View Single Post
  #7 (permalink)  
Old 01-04-2008, 12:04 PM
Bagi Zoltán's Avatar
Bagi Zoltán Bagi Zoltán is offline
Boss Cart consultant
1115 posts this year. Platinum VIP!
Trusted Member - This user is a Master!
Last months UKWW Tokens: 8
 
Join Date: Feb 2007
Location: Veszprém, Hungary
Posts: 1,602
Thanks: 4
Thanked 61 Times in 14 Posts
Nominated 0 Times in 0 Posts
TOTW/F/M Award(s): 0
Default

Of course SkinnerW. If you want to redirect page to the new location you may use php in order to let search engines know about the change. Here is a sample code:

PHP Code:
<?
Header
"HTTP/1.1 301 Moved Permanently" );
Header"Location: http://www.this-is-the-new-location.com" );
?>
If you have the possibility to use .htaccess redirections -the mod rewrite apache modul is enabled- you may place this code into the .htaccess file and upload to the root folder

Quote:
Redirect 301 /oldpage.html http://www.sampledomain.com/newpage.html
If you have a complete website moved to a new domain you may want to redirect the whole website using this code as the part of the .htaccess file

Quote:
Redirect 301 / http://www.newsampledomain.com/
__________________
Time may come when you will need a shopping cart
digitális mérleg keresőoptimalizálás
Reply With Quote