所以这是我的文件夹结构(这都在htdocs文件夹中)
myproject
-- scripts
-- myscript.js
-- responses
--response1.html
-- index.php
-- some
-- other
-- files
我需要的是myscript.js中的代码,它会将我重定向到response1.html。
现在,我不能只使用window.location = "localhost/responses"
或其他东西,因为最终这不会在本地主机上。
我已经尝试了所有这些" location.host"," location.protocol"事情,但他们都没有正确重定向,他们都转到localhost/responses/response1.html
,而不是localhost/myproject/responses/response1.html
有什么想法吗?感谢