我需要在我的一个脚本中使用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"))