咨询热线:4006-75-4006
售前:9:00-23:30 备案:9:00-18:00 技术:7*24h
针对于蓝队主机,如果我们想设置301跳转,就能可以在web.config 添加一下规则,如果没有web.config可以新建一个,在里面添加如下代码就可?了
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="301-youname.com" stopProcessing="true">
<match url=".*" />
<conditions>
<add input="{HTTP_HOST}" pattern="^youname.com$" />
</conditions>
<action type="Redirect" url="http://www.landui.com/{R:0}"
redirectType="Permanent" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
youname重定向到www.landui.com
主要注意<rule name="301-youname.com" stopProcessing="true">到</rule>之间的内容。
上面是一个IIS7.5通过web.config文件进行301重定向的设置。