是否可以将默认网站设置为重定向到 IIS 中的虚拟目录

是否可以将默认网站设置为重定向到 IIS 中的虚拟目录

您能否设置一个网站以默认重定向到虚拟目录?

我尝试过这样做,但它会覆盖我设置中的每个网站并将其重定向到该网站。

我希望能够打开http://我的网站/并将其重定向到某处。

答案1

对于 IIS 6,将内容源设置为“另一个目录”。

IIS 7 引入URL 重写它可让您轻松构建规则来执行此重定向。

答案2

您是否尝试过在 wwwroot 文件夹中编辑/创建 Default.html?

以下 Javascript 将重定向到您想要的位置:

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

答案3

我将从 /default.asp 进行重定向。您可以使用类似以下方法:

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

但请注意,这对用户来说并不透明。他们会看到他们输入的 URL 发生变化。

JR

相关内容