我无法从子文件夹索引文件链接回我的根文件夹索引文件。
我在example.com/blog的导航栏中有一个徽标,我希望链接回example.com
我已经测试了徽标图片的各种链接选项,包括
<a href="../index.html">
<a href="http://www.example.com">
<a href="../">
它们似乎都不起作用。徽标图片继续链接到example.com/blog/index.html
奇怪的是,如果我右键单击图像,然后在新窗口/选项卡中选择打开,那么它将加载example.com就好了。
我完全失去了。
这可能与我的.htaccess文件有关吗?
其他信息
我添加了一个&#34; Home&#34;文本链接到导航栏使用以下语法,它完美地工作。
<a href="http://www.example.com">Home</a>
由于某种原因,图像不会使用相同的语法链接回rootfolder index.html文件。它不断加载http://www.example.com/blog/index.html
答案 0 :(得分:0)
尝试使用javascript重定向
function home() {
window.location.replace("http://example.com");
}
&#13;
<button onclick="home()">hi</button>
&#13;
将http://example.com替换为您的网站。