我想像这样创建我的网址:
www.example.com/Content/page.html
在我的内容控制器之上,我使用:
[RoutePrefix("Home")]
除了我的索引操作之外,我还使用:
[Route("page.html")]
但是当我请求此 URL 时,会发生此错误:
HTTP Error 404.0 - Not Found
我该如何解决这个问题?感谢您的帮助
您需要
更改web.config
才能使其正常工作。在下面的行中添加:
<system.webServer>
<modules runAllManagedModulesForAllRequests="true" />
</system.webServer>
有关其功能的更多信息,请单击此处:http://www.iis.net/configreference/system.webserver/modules