我的网址和重定向链接存在问题。 我有这种情况,我有一个域/链接,必须重定向到两个不同的网址,具体取决于链接是否有例如参数。
我有这个链接> www.test.de
并将其重定向到www.test.de/subpage/page.html
。这没关系,这是正常情况。
但我有两个版本的重定向网址:
www.test.de/subpage/page.html
和www.test.de/subpage/page_2.html
www.test.de/subpage/page_2.html
在使用特定参数点击相同的重定向链接时应替换www.test.de/subpage/page.html
,而不更改重定向:
示例:www.test.de/parameter
>链接到page_2
我需要两个版本的页面,这就是为什么我有两个不同的页面,但只有一个域重定向:/我是所有这个php / javascript的新手,所以我不知道如何解决这个问题。
答案 0 :(得分:0)
是的,您可以使用window.open
或window.location.href
if(someCondition){
window.open(firstURL);
//or location.href = firstURL;
}else{
window.open(secondURL);
//or location.href = secondURL;
}