>Morning - 我想重定向我的短网址,即:https://sho.rt 到我的域 https://short.com
目前我的 sho.rt 指向管理面板。您能否告知我如何重定向。
谢谢
您需要构建一个位于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>