ASP.NET MVC 2 Issue - Dot in Route给出了一个示例,允许在url中使用点(。)并允许.svc文件。
我的问题是,如何允许任何类型的文件,我试过:
<httpRuntime relaxedUrlToFileSystemMapping="true" />
<remove extension=".*"/>
不工作!我想要的是:任何类型的URL(任何字符)都可以由MVC3 Route(MapRoute)处理。
答案 0 :(得分:0)
这是一个非常非常糟糕的主意。您希望人们能够下载您的web.config吗?看到你的密码?下载你的数据库? IIS和MVC故意阻止多种扩展,因为不这样做是非常不安全的。
答案 1 :(得分:0)
这是解决方案:
首先:它不会导致安全漏洞,如果您访问/web.config
,您将获得
HTTP Error 404.8 - Not Found
The request filtering module is configured to deny a path in the URL that contains a hiddenSegment section.
除非您当然更改hiddenSegment
。
这是web.config
文件中的解决方案:
<system.webServer>
<handlers>
<add name="Static-Favicon" path="favicon.ico" verb="GET" modules="StaticFileModule" resourceType="File" requireAccess="Read" />
<add name="Static-Robot" path="robots.txt" verb="GET" modules="StaticFileModule" resourceType="File" requireAccess="Read" />
<add name="ExtensionlessUrlHandler-ISAPI-4.0_32bit" path="*" verb="GET,HEAD,POST,DEBUG" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness32" responseBufferLimit="0" />
<add name="ExtensionlessUrlHandler-ISAPI-4.0_64bit" path="*" verb="GET,HEAD,POST,DEBUG" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework64\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness64" responseBufferLimit="0" />
<add name="ExtensionlessUrlHandler-Integrated-4.0" path="*" verb="GET,HEAD,POST,DEBUG" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" />
</handlers>
</system.webServer>
如果你喜欢你的MVC处理这两个文件,可以删除Static-Favicon和Static-Robot。
顺便说一下,你仍然需要<remove extension=".svc" />
来处理svc文件,而relaxedUrlToFileSystemMapping
需要url中的特殊代码