Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想要实现的是拥有一个可以“管理”多个子路径的 Wordpress 页面:
/blog_url/user/john
和
/blog_url/user/steve
两条路径都调用同一个页面/about?name=john 或 steve。
/about?name=
这在 Wordpress 中是否可行,还是需要自定义 ReWriteRule?如果两者都不是,那么实现这一目标的最佳方法是什么?
您确实需要在您的 htaccess 中使用自定义重写器来执行此操作。就像是:
RewriteRule ^user/([^/]+)/ /user/?name=$1 [NC]
然后你会使用 $_GET['name'] 并在你的页面代码中使用它