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.
これが私が持っているものです
RewriteRule ^/articles/category/([0-9]+)/$ ./index.php?module=articles&view=cat&catid=$1
私は何かが欠けている必要がありますか?
「catid」を取得しようとしているだけで、他には何もありません。
ルールを次のように変更します。
RewriteRule ^articles/category/([0-9]+)/?$ /index.php?module=articles&view=cat&catid=$1 [L,NC,QSA]
RewriteRule は、先頭のスラッシュを取り除いた後に URI の照合を開始することに注意してください。/
/
追加されたいくつかのフラグは次のとおりです。