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

Redirect 将所有.php页面重定向到web.config中的.htm,redirect,web-config,Redirect,Web Config,我想将所有.php页面重定向到web.config中的.htm 请帮帮我 注意:网站在IIS服务器上运行。请尝试此web.config代码,编辑example.com并将其添加到您的域名 <rule name="rule 1C" stopProcessing="true"> <match url="^(.*)$" /> <action type="Rewrite" url="/http://www.example.com/{R:1}" />

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

请帮帮我


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

请尝试此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>