2017-08-03 131 views

回答

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>