<?xml version="1.0" encoding="utf-8"?> <configuration> <location> <system.webServer> <httpRedirect enabled="true" destination="http://www.example.com/" httpResponseStatus="Permanent" /> </system.webServer> </location> </configuration>
但是我需要对这个规则做一个例外:我不希望我的页面“default.aspx”被重定向。我怎样才能做到这一点?
<configuration> <system.webServer> <httpRedirect enabled="true" exactDestination="true" httpResponseStatus="Found"> <add wildcard="*.PHP" destination="/default.htm" /> </httpRedirect> </system.webServer> </configuration>
但是我不知道你是否可以否定这一点,所以它忽略了某个文件。