1

htaccessの一部を次のように書き換えました

RewriteRule ^articles/([^/]*)/([^/]*)/$ /index.php?section=articles&page=$1&id=$2 [L]
RewriteRule ^articles/([^/]*)/([^/]*)$ /index.php?section=articles&page=$1&id=$2 [L]
RewriteRule ^articles/([^/]*)/$ /index.php?section=articles&page=$1 [L]
RewriteRule ^articles/([^/]*)$ /index.php?section=articles&page=$1 [L]
RewriteRule ^articles/$ /index.php?section=articles [L]
RewriteRule ^articles$ /index.php?section=articles [L]

しかし、例えば書くと/articles/detail/1ちゃんと動きますが、最後にバックスラッシュ( )を入れると動き/articles/detail/1/ません。

ご協力ありがとうございました。

4

1 に答える 1

1

実際の問題は、ルールの末尾のスラッシュの配置です。次のように、すべてのルールで末尾のスラッシュをオプションにする必要があります。

RewriteRule ^articles/([^/]+)/([^/]+)/?$ /index.php?section=articles&page=$1&id=$2 [L]
RewriteRule ^articles/([^/]+)/?$ /index.php?section=articles&page=$1 [L]
RewriteRule ^articles/?$ /index.php?section=articles [L]
于 2013-08-15T10:19:11.643 に答える