我一直在使用Visual Studio中的ASP.NET Web应用程序项目。在该项目中,当用户输入主机名时,他们会收到404错误,但我希望他们在刚刚输入主机名时将其重定向到index.html。
我想知道这是怎么做到的。下面是我使用的代码,但它不起作用
<location path="">
<system.webServer>
<httpRedirect enabled="true" destination="../index.html" httpResponseStatus="Permanent" />
</system.webServer>
</location>
答案 0 :(得分:1)
您可以使用.htaccess文件将404重定向到另一个页面。检查这篇文章中的答案: How do I redirect 404's to index.html and rewrite the URL to the home page URL?