Quote:
|
Originally Posted by techniner
why not just...
<? header (Location: http://someothersite.com"); ?>
I mean so long as DNS is answering just redirect it that way .. no?
|
yep you can do that BUT that will be a 302 redirect
to 301 in php is
Code:
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://www.somesite.tld");
exit()
__________________
Chris. ->> Links are advertising NOT optimising!! <<-
A foolish consistency is the hobgoblin of little minds
Thought for today:- I SEO the only industry where all the cowboys are Indians?
|