Forum Moderators: phranque
RewriteRule ^oldpage\.asp$ newpage.html
After 2 months Google still has all the old .asp pages listed and with supplemental results. All new pages are listed and they are fine. When I click on the old .asp links in Google it brings up the new page with the old .asp extension on it.
I did some reading and find confusing data re putting a forward slash before the new page URL, i.e.,
RewriteRule ^oldpage\.asp$ /newpage.html
and also I assume, being as this was a permanent move I should have added the 301 on the end, i.e., I assume I should have listed the rule as:
RewriteRule ^oldpage\.asp$ /newpage.html [R=301]
Can someone tell me if this is correct please?
RewriteRule ^oldpage\.asp$ http://www.example.com/newpage.html [R=301,L]
Jim