YOURLS域的短URL

时间:2017-08-03 09:24:45

标签: yourls

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

此刻,我的笑话指向管理面板。你可以告诉我如何重定向。

谢谢

1 个答案:

答案 0 :(得分: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>

相关问题