Urlrewrite重写模块配置文件web.config代码如下:
<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <directoryBrowse enabled="true" /> <rewrite> <rules> <rule name="fz" stopProcessing="true"> <match url=".*.(jpg|jpeg|gif|png|bmp|zip|rar|exe|7z|iso|mp3|avi|mp4|mkv|php)$" /> <conditions logicalGrouping="MatchAll"> <add input="{HTTP_REFERER}" pattern="sgtfz.cn" negate="true" /> <add input="{HTTP_REFERER}" pattern="www.sgtfz.cn″ negate="true" /> </conditions> <action type="Redirect" url="http://xxx.cn/" redirectType="Found" /> </rule> </rules> </rewrite> </system.webServer> </configuration>