0

I have an IIS site that is under the 'Default Web Site'. I need my www.blahblahblah.com to go to www.blahblahblah.com/site

I have tried HTTP Redirect in the IIS console but it ends up redirecting too many times and not working. What is the proper way to do this?

Thank you!

Michael
  • 99
  • 2
  • 13

2 Answers2

0

Try set /site$S$Q. Note: $S$Q is to save everything goes after /site, e.g. query string. Also, if you're using IIS 7+, you might need to use $V$Q.

0

in your default page in www.blahblahblah.com do a server.transfer or a response.redirect to www.blahblahblah.com/site. Your choice which method to use. See here for a community discussion on it.

Community
  • 1
  • 1
E LaRoche
  • 1,106
  • 1
  • 7
  • 8