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 が必要です。何かのようなもの:
RewriteRule ^user/([^/]+)/ /user/?name=$1 [NC]
そして、 $_GET['name'] を使用して、ページのコードで使用します