Can anyone tell me if it's possible to create a php redirect page on some spare hosting with a specific qualifier. I know nothing of php.
Basically I was assisting somebody with a move from Express to Business and we and Actinic have failed to get any meaningful redirect from the Express site which is still fully indexed and has decent page rank and SERPs on about 36 pages which were top sellers and have now slowed to a halt. We need 301's to the new pages.
The Express pages look like
ww.website-shop.codotuk/index.php?page_name_or_something
and we have come down to the only option being to move the domain to our own hosting and solve it there.
The question is, can we recreate this exact URL on our own hosting and use a proper php redirect on that page which I believe might look something like
<?
Header( "HTTP/1.1 301 Moved Permanently" );
Header( "Location: http://www.website.co.uk/shop/page-name-or-something.html" );
?>
Anyone know how we can achieve this?
Basically I was assisting somebody with a move from Express to Business and we and Actinic have failed to get any meaningful redirect from the Express site which is still fully indexed and has decent page rank and SERPs on about 36 pages which were top sellers and have now slowed to a halt. We need 301's to the new pages.
The Express pages look like
ww.website-shop.codotuk/index.php?page_name_or_something
and we have come down to the only option being to move the domain to our own hosting and solve it there.
The question is, can we recreate this exact URL on our own hosting and use a proper php redirect on that page which I believe might look something like
<?
Header( "HTTP/1.1 301 Moved Permanently" );
Header( "Location: http://www.website.co.uk/shop/page-name-or-something.html" );
?>
Anyone know how we can achieve this?
Comment