IIS前台配置会和web.config相互影响。
一、允许通过的请求谓词
请求谓词有:HEAD、POST、GET、TRACE、OPTIONS。
设置方法有两种:
-
web.config配置
此配置会直接显示在IIS中。
<system.webServer><security><requestFiltering><verbs allowUnlisted&#61;"false"><add verb&#61;"GET" allowed&#61;"true"/><add verb&#61;"POST" allowed&#61;"true"/>verbs>requestFiltering>security>
system.webServer>
-
IIS直接设置
直接设置的也会显示字在web.config文件中。
二、设置打不开某个特定的地址
-
web.config
<system.webServer><rewrite><rules><clear /><rule name&#61;"Ban" stopProcessing&#61;"true"><match url&#61;"^(?!.*\\.js$).*\.js$" /><action type&#61;"Redirect" url&#61;"http://10.72.66.7/404page/404.htm" /><conditions></conditions></rule></rewrite></system.webServer>
</configuration>
-
前台配置
没这个URL重写功能需要自己安装&#xff0c;自行百度。