I have a link dump with about 1500 out going links.
following my friend who advised me a bit about SEO and how much I should lessen outgoing links to PR 0 page I am using a certain "jump" page as a redirection, something like:
http://mydomain.com/jump.php?url=http://otherdomain.com/page.html
this is the jump.php
will this get me into trouble with google? lower my PR?
here is some good info for ya on the subject (someone may find this interesting as I did):
http://clsc.net/research/google-302-page-hijack.htm
following my friend who advised me a bit about SEO and how much I should lessen outgoing links to PR 0 page I am using a certain "jump" page as a redirection, something like:
http://mydomain.com/jump.php?url=http://otherdomain.com/page.html
this is the jump.php
Code:
$url=$_REQUEST["url"];
header("HTTP/1.0 302 bounce");
header("Location: $url");
header("Connection: close");
here is some good info for ya on the subject (someone may find this interesting as I did):
http://clsc.net/research/google-302-page-hijack.htm

Comment