我想将所有.php
个网页重定向到 web.config 中的.htm
。
请帮帮我。
注意:网站在IIS服务器上运行。
答案 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>