重写动态页面的规则

时间:2015-02-03 16:09:27

标签: wordpress .htaccess mod-rewrite

我想在一个规则中在Wordpress中设置rewriterule。 无论用户打开哪个用户:/ user / public-profile / something 实际上在后端执行:/ user / public-profile /?n = something

这是我的代码,对我不起作用:

  

RewriteRule ^ user / public-profile /([^ /] *)$ / user / public-profile /?n = $ 1 [L,NC]

我需要使用add_rewrite_rule来理解wordpress的解决方案。 但是.htaccess rewriterule也可以。

有什么建议吗?

1 个答案:

答案 0 :(得分:0)

我认为你正在寻找类似的东西:

add_rewrite_rule(' user / public-pprofile /?([^ /] *)',' index.php?pagename = public-profile& public-profile = $ matches {{ 3}}',' top');

显然可以在这里替换你的实际slug作为pagename参数。 1更详细的解释。