咨询热线:4006-75-4006
售前:9:00-23:30 备案:9:00-18:00 技术:7*24h
1.在<system.webserver>中添加如下代码,只要修改下面要跳转的域名和跳转到那个域名:如把wap.aspcms.com域名301到www.landui.com:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="301-landui" stopProcessing="true">
<match url=".*" />
<conditions>
<add input="{HTTP_HOST}" pattern="^wap.aspcms.com$" />
</conditions>
<action type="Redirect" url="http://www.landui.com{R:0}" redirectType="Permanent" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
2.在windows主机中实现301重定向的方法还有很多,如isapi rewrite实现301重定向;有时我们一个站点中有很多域名要把不带www的重定向到带www的或者是把其中一个域名重定向到其他域名中.
3.如果想把整个站点都重定向可以在”HTTP 重定向”中设置.