所以,我有一个插件,使用jQuery / Javascript将用户重定向到指定的页面,如下所示:
window.location.href = window.location.hostname + '/index.php/searchresults-gw/'
当插件从主页以外的任何页面引用时,例如192.1.0.2/pagename/
,然后用户被正确地重定向到192.1.0.2/index.php/searchresults-gw/
。
但是当从主页(192.1.0.2)引用相同的插件时,网址会尝试解析为192.1.0.2/192.1.0.2/index.php/searchresults-gw/
我在这里俯瞰什么?
答案 0 :(得分:2)
window.location.href =' http://' + window.location.hostname +' /index.php/searchresults-gw /'