我创建了一个 wordpress 插件,它使用简码和 URL 参数来加载特定文本。
默认页面是:
domainname.com/test
[shortcode for plugin]
... default template ...
它可以使用以下参数加载一些文本:
domainname.com/test?book_id=BWBR0002656&art_id=1
[shortcode for plugin]
... loaded the text for the book_id and art_id ...
我想将 javascript 参数 url 从当前domainname.com/test?book_id=BWBR0002656&art_id=1更改为domainname.com/test/BWBR0002656/1而不会触发 wordpress 404 重定向。
这可能与短代码页面仍在运行有关吗?