假如已经有一个网站名字为: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的空间下放这个网址即可

相关文章:

  • 2022-12-23
  • 2021-06-01
  • 2021-10-16
  • 2022-02-28
  • 2022-12-23
  • 2021-09-07
  • 2022-12-23
  • 2021-08-07
猜你喜欢
  • 2022-12-23
  • 2021-07-21
  • 2021-11-15
  • 2021-04-22
  • 2021-12-07
  • 2021-07-15
相关资源
相似解决方案