天天看點

兩個域名指向同一個網站

假如已經有一個網站名字為: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