1

Can you set up a website to make a default redirect to a virtual directory?

I tried to do this but it overrode every single website in my setup to that redirect.

I want to be able to open http://mywebsite/ and have that redirect somewhere.

Spence
  • 670
  • 3
  • 9
  • 19

3 Answers3

2

For IIS 6, set the content source to "Another directory".

IIS 7 introduces URL rewriting which lets you easily build a rule to do this redirect.

crb
  • 7,928
  • 37
  • 53
  • but when I did this it overrode every single virtual directory. I didn't select override all my virtual directories but it still did it. – Spence Jun 15 '09 at 02:02
  • Metabase keys are inherited by default, so if you set this key on your root, and none override it, it may get inherited. I would consider it a bug that this does not work the way you expected. If I'd have known you did this already I would have suggested one of the redirect options (JavaScript or ASP). – crb Jun 15 '09 at 12:28
1

Have you tried editing/creating the Default.html in your wwwroot folder?

The following Javascript will redirect to where you want:

<script type="text/javascript">
<!--
    window.location = "http://mywebsite/virtualfolder"
//-->
</script>
1

I would do the redirection from /default.asp. You can use something like:

<%
' code to check the request here
...
' Redirect to directory of your choice
response.redirect "http://myserver/somedir/"
%>

Though note that this won't be transparent to the user. They will see the URL they typed in change.

JR

John Rennie
  • 7,756
  • 1
  • 22
  • 34