免费空间
您的位置:首页 > 网站建设 >

Windows空间:301重定向设置代码?

作者:免费空间 发布时间:2019-04-11 22:43:08

在根目录下创建web.config文件:

1、如果访问域名是www.abcde.cn,则跳转到www.baidu.com。
<configuration>
<system.webServer>
<rewrite>
    <rules>
        <rule name="Enforce canonical hostname" stopProcessing="true">
            <match url="(.*)" />
            <conditions>
                <add input="{HTTP_HOST}" negate="false" pattern="^www.abcde.cn$" />
            </conditions>
            <action type="Redirect" url="http://www.baidu.com/{R:1}" redirectType="Permanent" />
        </rule>
    </rules>
</rewrite>
</system.webServer>
</configuration>

2、多个访问域名跳转到www.abcde.cn
<configuration>
<system.webServer>
<rewrite>
    <rules>
        <rule name="Enforce canonical hostname" stopProcessing="true">
            <match url="(.*)" />
            <conditions>
                <add input="{HTTP_HOST}" negate="true" pattern="^www.abcde.cn$" />
            </conditions>
            <action type="Redirect" url="http://www.abcde.cn/{R:1}" redirectType="Permanent" />
        </rule>
    </rules>
</rewrite>
</system.webServer>
</configuration>


提示:所有跳转的域名与跳转后访问域名的解析地址相同。

阅读全文
标签:没有tag

上一篇:http 错误 403.14 -Forbidden报错

下一篇:新安装的wordpress,可视化编辑不能使用?

相关推荐
免费空间声明:
(一) 由于各方面情况的调整与变化,本网所提供的考试信息仅供参考,敬请以权威部门公布的正式信息为准。
(二) 本网注明来源为其他媒体的稿件均为转载稿,免费转载出于非商业性学习目的,版权归原作者所有。如有内容、版权等问题请在30日内与本网联系。联系方式:邮件 jiansou123@126.com
网站地图 | XML地图 | PC版
版权所有 © www.128sj.com 免费空间
本网站所有信息全是来源于互联网
如有侵权请来电咨询!
粤ICP备16040413号-1