redirect website
#1
Posted 09 February 2010 - 05:11 PM
thanks for any help
#2
Posted 09 February 2010 - 05:27 PM
#3
Posted 09 February 2010 - 05:37 PM
#4
Posted 09 February 2010 - 05:58 PM
#5
Posted 09 February 2010 - 06:04 PM
thanks again
#6
Posted 09 February 2010 - 06:22 PM
<head>
<script type="text/javascript">
<!--
function foreward(){
window.location = "http://<your new address>";
}
//-->
</script>
<head>
<body onLoad="setTimeout('foreward()', 5000)">What this does is forwards to the url you provide after 5 seconds (5000 ms). Or it should. I just wrote this off the top of my head. Anyway, the code enclosed by the <script> tags goes between the head tags in your html. The other part of the code is inserted in the body tag of your html.
I have a feeling once they ralize that you are no longer actively using the domain, they will shut it down though.
#7
Posted 09 February 2010 - 06:52 PM
By the time they realise I'm not using it anymore Google would hopefully have caught up, and my customers will have changed their bookmarks.
thanks again, you're so clever
#8
Posted 09 February 2010 - 06:56 PM
Well, I made one person happy. My day is complete.
#9
Posted 09 February 2010 - 06:58 PM
You might be able to simulate a 301 redirect if your host allows you to use PHP.
To try it, change the place holder page's extension to .php (for example myplaceholder.html becomes myplaceholder.php) and add this to the very top:
<?php Header( "HTTP/1.1 301 Moved Permanently" ); Header( "Location: http://www.new-url.com" ); exit(); ?>
Where http://www.new-url.com is the new address.
This post has been edited by Amazing Andrew: 09 February 2010 - 07:04 PM
Boredom Software Stop Highlighting Things
#11
Posted 09 February 2010 - 07:22 PM
Boredom Software Stop Highlighting Things
#13
Posted 09 February 2010 - 07:35 PM
Boredom Software Stop Highlighting Things
#14
Posted 09 February 2010 - 07:44 PM
How does Google respond to this? Will it notice it? Will I lose ranking?
thanks
#15
Posted 09 February 2010 - 07:50 PM
Boredom Software Stop Highlighting Things

Help



Back to top










