0

早上 - 我想重定向我的短网址,即:https://sho.rt到我的域https://short.com

目前我的 sho.rt 指向管理面板。您能否告知我如何重定向。

谢谢

4

1 回答 1

0

您将需要构建一个位于 yourls 顶级目录中的 index.php 文件。如何使用 html 进行重定向的一个简单示例是。

<html>

  <head>
    <title>Your Site Title</title>
    <script>
      window.location.replace("https://www.yourwebsite.com");
    </script>
  </head>

  <body>
    <h2>If you are not automatically redirected in 5 seconds, <a href="https://www.yourwebsite.com" target="_self">Click Here</h2></a>
  </body>
</html>

于 2018-01-25T21:43:21.590 回答