View Single Post
  #2 (permalink)  
Old 02-20-2008, 08:21 PM
stock stock is offline
WebProWorld New Member
 

Join Date: Oct 2007
Posts: 2
stock RepRank 0
Default Re: 301 redirect from .html to .asp

You need a url rewriter such as IIS mod-rewrite which enables .htaccess on IIS. You can use rules like below to do 301 redirects

RewriteEngine On
RewriteRule ^old_page\.html$ /new_page.html [R=301,L]

But I guess you are on a shared hosting, so installing such a tool may not be an easy procedure.

Unfortunatelly, using meta refresh is not a 301 redirect and you have no SEO benefit
Reply With Quote