kneidels Asked: 2020-02-13 04:50:33 +0800 CST2020-02-13 04:50:33 +0800 CST 2020-02-13 04:50:33 +0800 CST 在 IIS7 上重写 URL(文件)扩展名 772 我公司的站点在 Classic ASP(.asp扩展名)中是否可以将文件更改为.htm(或其他),但仍然让 IIS 将它们解析为 ASP 文件? Using Windows Web Server 2008 R2 and IIS 7.5 Host says that URL Rewrite module version is 2.0 on the server. 谢谢你。 iis iis-7.5 1 个回答 Voted Best Answer kneidels 2020-02-20T15:46:46+08:002020-02-20T15:46:46+08:00 h/t @Lex 李: <rule name="hide .asp extension" stopProcessing="true"> <match url="^(.*)$" ignoreCase="true" /> <conditions> <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" /> <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" /> <add input="{REQUEST_FILENAME}.asp" matchType="IsFile" /> </conditions> <action type="Rewrite" url="{R:0}.asp" /> </rule>
h/t @Lex 李: