我尝试在我的php网站上包括一些重定向到我的github的按钮,但是他们没有重定向到我的github,而是尝试在myd目录中找到链接。因此,我没有获得github.com,而是得到了localhost / projects / index.php / github.com
答案 0 :(得分:0)
尝试用<a href="//github.com">GOOD LINK</a>
代替<a href="github.com">BAD LINK</a>
答案 1 :(得分:0)
对于按钮,您可以应用以下html,必须包含HTTPS协议,否则它将被解释为本地文档。
<button onclick="window.location.href='https://github.com/'">Github</button>