帮助中心

我们将为您提供完善的帮助文档,竭诚为您提供最优质的服务!

如何设置301重定向

如要将example.com重定向到www.example.com,则配置web.config如下:

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="www" stopProcessing="true">
<match url=".*" />
<conditions>
<add input="{HTTP_HOST}" pattern="^example\.com$" />
</conditions>
<action type="Redirect" url="http://www.example.com/{R:0}" redirectType="Permanent" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>

以上是否解决了您的问题
  


Copyright © 2006-2022 9557.com. All Rights Reserved. 三千尺科技版权所有 常年律师顾问: 福建瀛坤律师事务所