0

I want to rewrite(301 redirect) www.mydomain.com\default.htm to www.mydomain.com\HomePage.aspx. This way I need to do for each htm page in my site to different aspx page.

Ramya
  • 121
  • 2
  • 7
  • 13

1 Answers1

0
RewriteEngine on
RewriteBase /
RewriteRule default.htm /HomePage.aspx [I,U,L]

I think this will do, but if you are running on IIS you could also take a look into URL Rewrite Module 2.0

I think i got the flags wrong: RewriteRule Default.htm HomePage.aspx [NC,R=301,L]

Should do the trick. Nethertheless ISAPI_Rewrite is quite well documented at "ISAPI Rewrite Examples"

TGlatzer
  • 5,815
  • 2
  • 25
  • 46
  • As my site is hosted in third party web server, only way to do 301 redirect is to use httpd.ini file. I have included this in that.But not working. – Ramya Aug 27 '12 at 10:06