备案 - 控制台 退出
备案 免费注册 登录
云服务器
负载均衡
云数据库
对象存储
会员相关
账号资产
安全保障
财务相关
商标注册
上架流程
下架流程
重装系统
首次备案
备案规则
常见问题
常见问题 > 如何设置301重定向
如要将example.com重定向到www.example.com,则配置web.config如下:
.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>
<?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 © 2020-2021 apayun.com All Rights Reserved. 小鸟云平台系统 版权归属深圳阿帕云计算有限公司所有 深圳小鸟云平台计算有限公司 粤ICP备2020124204号-4
《中华人民共和国增值电信业务经营许可证》粤B1-20160477
TOP