将所有.php页面重定向到web.config中的.htm

时间:2015-03-10 10:07:42

标签: redirect web-config

我想将所有.php个网页重定向到 web.config 中的.htm

请帮帮我。

注意:网站在IIS服务器上运行。

1 个答案:

答案 0 :(得分:0)

尝试使用此web.config代码,使用您的域名编辑example.com

<rule name="rule 1C" stopProcessing="true">
    <match url="^(.*)$"  />
    <action type="Rewrite" url="/http://www.example.com/{R:1}"  />
</rule>
<rule name="rule 2C">
    <match url="^(.*).html$"  />
    <action type="Rewrite" url="/{R:1}.php"  appendQueryString="true" />
</rule>