我正在使用XAMPP,我在htdocs中有两个目录。基本上,我正在努力做到以下几点:
从localhost/folder-website1 directs
我到localhost/folder-website2
如果有任何帮助,website2是一个用作API的Lumen项目,我试图查看我是否能够连接到它。
编辑:
在website1中,我有一个执行以下操作的按钮:
function test(){
window.location.href = "localhost/website2/public";
}
从我看到的,URL变为
http://localhost/website1/localhost/website2/public
答案 0 :(得分:1)
使用window.location.href =" http://localhost/ ..." 或使用
由于 拉吉
答案 1 :(得分:1)
您创建了一个相对链接,因为URL的开头缺少协议方案。 localhost/website2/public
会重定向到当前driectory中的localhost/website2/public
网址。
提供带有架构的绝对URL,以便到达正确的页面:
function test(){
window.location.href = "http://localhost/website2/public";
}