答案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