标头和location.href不会加载其他页面,而是使用根目录

时间:2019-09-28 09:28:54

标签: javascript php

我尝试在我的php网站上包括一些重定向到我的github的按钮,但是他们没有重定向到我的github,而是尝试在myd目录中找到链接。因此,我没有获得github.com,而是得到了localhost / projects / index.php / github.com

2 个答案:

答案 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>