Quote:
|
Originally Posted by Rohit_Malhotra
What will be the proper step by step process to use 301 Redirection method and to get our Google page Rank Back?
|
I know 301 redirects are preferred over some other types of redirects like javascript & meta redirects.
I recommend using mod_rewrite and a proxy redirect. This preserves
PR without having redundant files etc.
Code:
# -Rewrite Rules
RewriteEngine On
RewriteRule ^/$ /page.php?p=home [P,L]
RewriteRule ^index\.html /page.php?p=home [P,L]
RewriteRule ^index\.htm /page.php?p=home [P,L]
RewriteRule ^(.*)\.htm$ /page.php?p=$1 [P,L]
I had the opposite problem, alot of legacy html content, and I wanted it to be PHP pages, so the navigation & presentation could be optimized and consistent.
Please post your php URLs and someone may be able to assist further. blank out the domain name if you wish, but leave rest of it.
Cheers!
-John