- IIS服务器设置域名301重定向方法:将以下代码放在网站根目录的web.config文件中即可
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="IIS_301" stopProcessing="true">
<match url=".*" />
<conditions>
<add input="{HTTP_HOST}" pattern="^wanxx.top$" />
</conditions>
<action type="Redirect" url="http://www.wanxx.top/{R:0}"
redirectType="Permanent" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>