Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
301 redirect question
hi... supporse i have two pages, page A and B. Page A has many inlinks and high PR, page B does not. If I want page B to receive all the links and PG of page A, can I use php 301 redirect? (see code below).. the purpose is to tell google, "give credit to page A instead of B, couse B passes everything to page A".. so, am i doing it right? if not, which is the best way to do it?
thanks
code:
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://newavessays.com/different_essays.php");
exit;
0
This discussion has been closed.
Comments
RewriteRule ^(.*) http://www.newdomain.com/$1 [L,R=301]
RewriteRule ^different_essays.php http://www.newdomain.com/different_essays.php [L,R=301]
(I think)