.htaccesファイルでこれらを書き直したい:
/*.php -> /*(/)
(例:gallery.phpから/galleryまたは/gallery /)
/snippets.php*?s= -> /snippets/*
(例:snippets.php *?s = test to / snippets/testまたは/snippets/ test /)
これまでの私のコード:
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ $1.php [L]
RewriteRule ^snippets/([^/\.]+)/?$ snippets.php?s=$1 [L]
私のコードを使用して表示されるバグ:
/snippets/および/snippets/ test(/)は、500エラーを警告します。/snippetsは正常に機能します。
私は何が間違っているのですか?