URL 路由在带有应用池 asp.net 2.0 经典模式的 IIS 7.0 中不起作用

发布于 2024-12-03 21:51:29 字数 457 浏览 1 评论 0原文

我已经在我的项目中实现了 URL 路由,我遵循了以下文章: URL 路由演示

此 URL 路由演示在我的“带有应用程序池 asp.net 2.0 集成模式的 IIS 7.0” 中工作正常

,但不行当我将其设置为“带有应用程序池 asp.net 2.0 经典模式的 IIS 7.0”时有效(给出 404 错误)

我需要在 ASP.net 中将应用程序池配置为经典模式的 IIS 7.0 配置2.0。

请指定您的配置以使上述项目工作(或路由工作)

谢谢......

I have implemented the URL Routing in my projects I have followed the below article:
URL Routing DEMO

This URL Routing Demo works fine in my "IIS 7.0 with application pool asp.net 2.0 Integrated Mode"

but not works(gives 404 error) when I have set it as "IIS 7.0 with application pool asp.net 2.0 Classical Mode"

i need a configuration for IIS 7.0 with application pool configured as classic mode in asp.net 2.0 .

Please specify your configuration for above project to work(or routing to work)

Thanks....

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

风吹过旳痕迹 2024-12-10 21:51:29

在经典模式 IIS7 中,您基本上需要将其添加到您的配置中。请参阅此处了解更多信息(向下滚动到IIS 7 经典管道模式中的通配符脚本映射)。

<system.webServer>
    ...
    <handlers accessPolicy="Read, Script">
      ...
      <remove name="StaticFile" />
      <add name="ASP.NET-ISAPI-2.0-Wildcard"
         path="*" verb="GET,HEAD,POST,DEBUG"
         modules="IsapiModule"
         scriptProcessor="%windir%\Microsoft.NET\Framework\v2.0.50727\aspnet_isapi.dll"
         preCondition="classicMode,runtimeVersionv2.0,bitness32" responseBufferLimit="0" />
      <add name="StaticFile" 
         path="*" verb="*" 
         modules="StaticFileModule,DefaultDocumentModule,DirectoryListingModule" 
         resourceType="Either" requireAccess="Read" />
    </handlers>
    ...
</system.webServer>

In classic mode IIS7 you basically need this added to your config. See here for more info (scroll down to Wildcard script mapping in IIS 7 classic pipeline mode).

<system.webServer>
    ...
    <handlers accessPolicy="Read, Script">
      ...
      <remove name="StaticFile" />
      <add name="ASP.NET-ISAPI-2.0-Wildcard"
         path="*" verb="GET,HEAD,POST,DEBUG"
         modules="IsapiModule"
         scriptProcessor="%windir%\Microsoft.NET\Framework\v2.0.50727\aspnet_isapi.dll"
         preCondition="classicMode,runtimeVersionv2.0,bitness32" responseBufferLimit="0" />
      <add name="StaticFile" 
         path="*" verb="*" 
         modules="StaticFileModule,DefaultDocumentModule,DirectoryListingModule" 
         resourceType="Either" requireAccess="Read" />
    </handlers>
    ...
</system.webServer>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文