0

How do i rewrite URL like:

http://subfoo.foo.com/ --> http://subfoo.foo.com/Pages/Home.aspx

Parag Meshram
  • 8,281
  • 10
  • 52
  • 88

1 Answers1

0

It should be as simple as:

RewriteEngine on    
RewriteBase /
RewriteRule ^$ Pages/Home.aspx [NC,L]
TonyCool
  • 1,004
  • 1
  • 6
  • 5