URL Redirect HELP!!! PLZ

danielblank

Registered Member
Joined
Nov 26, 2010
Messages
88
Reaction score
21
How can I make my current url ( the site that I own ) redirect to a URL and a different page so that it will lead my organic traffic to a seperate affiliate site ( that I dont own )....just would like to test something out:D
 
Use this code, place it in index file.

Code:
<?php
header('HTTP/1.1 301 Moved Permanently');
header('Location: http://www.exempel.se/sida.html');
?>
 
DANG! thats what I'm talking about...thax for the quick help,..will do
 
Just thought of something,..doing this want hurt my current position in the SE's
will it?
 
yes it hurts a lil position in SR but you can maintain it by building links and ericsson has given you best advice of putting 301 redirect ...
 
Use this code, place it in index file.

Code:
<?php
header('HTTP/1.1 301 Moved Permanently');
header('Location: http://www.exempel.se/sida.html');
?>
or if your using hostgator by chance, inside of the CP you can do it that way, but its all the same, it will redirect the same. its all a 301* just make sure you use a 301 and not anything else
 
Back
Top