gpt4 book ai didi

asp.net - IIS7 的 ASP MVC 路由问题

转载 作者:行者123 更新时间:2023-12-04 17:29:15 24 4
gpt4 key购买 nike

我们在 IIS7 服务器上部署 MVC 应用程序时发现了问题:任何路由导航都会出现 404 错误。我在网上发现可以通过将应用程序池管理的管道模式设置为集成来解决问题,但现在我们有异常(exception):

Request is not available in this context

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.Web.HttpException: Request is not available in this context

Source Error:


Line 19:
Line 20: public override void SetActiveUser(Guid userOid) {
Line 21: FormsAuthentication.SignOut();
Line 22: HttpContext.Current.Items[Key] = userOid.ToString();
Line 23: FormsAuthentication.RedirectFromLoginPage(userOid.ToString(), true);

有人有什么想法吗?

最佳答案

问题可能出在 web.config 文件中。从 IIS7 开始,现在有两个地方可以配置处理程序和模块。当您在经典模式下运行时,就像在 IIS 6 上运行(尽管在 IIS7 下)。

这是配置文件:

<system.web>
[...]
<httpHandlers>
[...]
</httpHandlers>
<httpModules>
[...]
<add name="UrlRoutingModule" type="System.Web.Routing.UrlRoutingModule, System.Web.Routing, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />

</httpModules>
</system.web>

应该只有 IIS 6 配置。

IIS 7 配置应放在:
    <system.webServer>
[...]
<modules runAllManagedModulesForAllRequests="true" >
<remove name="UrlRoutingModule"/>
<add name="UrlRoutingModule" type="System.Web.Routing.UrlRoutingModule, System.Web.Routing, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
</modules>
<handlers>
<add name="UrlRoutingHandler" preCondition="integratedMode" verb="*" path="UrlRouting.axd" type="System.Web.HttpForbiddenHandler, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
</handlers>
</system.webServer>

关于asp.net - IIS7 的 ASP MVC 路由问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/643477/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com