WordPress固定链接和Java脚本重定向

时间:2014-03-18 作者:raaaa

我需要在我的一个脚本中使用javascript重定向。具有/%postname%/ WP permalinks结构重定向工作正常,但默认情况下,它总是重定向到主页。

/%postname%/ 结构脚本:

window.location.replace(encodeURIComponent("http://www.url.com/customposttype/postslug"));
默认permalinks结构脚本:

window.location.replace(encodeURIComponent("http://www.url.com/?customposttype=postslug"))

1 个回复
SO网友:random_user_name

问题是您的脚本正在进行替换,但您真正想要的是设置窗口位置:

从以下位置更改重定向:

window.location.replace(encodeURIComponent("http://www.url.com/?customposttype=postslug"))

window.location = "http://www.url.com/?customposttype=postslug";
它应该能正常工作。

结束

相关推荐

如何使此JavaScript与Get_Permarink一起工作

我是这个很棒的论坛的新手,因此不确定下面的问题是否属于这里。一个小JavaScript,当我在其中放置一个静态url时,它可以完美地工作,但我不知道如何使用get_permalink()var $el, $tempDiv, $tempButton, divHeight = 0; $.fn.middleBoxButton = function(text, url) { return this.hover(function(e) { $el = $(thi