两个域名指向同一个网站

假如已经有一个网站名字为:www.1234.com

我们想让1234.com也指向www.1234.com 可以新建一个web.config如下


<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        <httpRedirect enabled="true" destination="http://www.1234.com" childOnly="true" httpResponseStatus="Permanent" />
    </system.webServer>
</configuration>

1234.com的空间下放这个网址即可

原文地址:https://www.cnblogs.com/xiaoyaodijun/p/5112660.html