%{REQUEST_FILENAME} と %{THE_REQUEST} によって何が返されますか?
.htaccess ファイルをチェックしていたところ、気が付いたのですが、これについてはほとんど知識がありません。以下のコードは両方を使用しています。それは私がそれを理解したいだけです。
#remove / at the end of URL
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.+)/$ /$1 [L,R=301]
#remove /index.php at the end of URL
RewriteCond %{THE_REQUEST} ^.*/index.php
RewriteRule ^(.*)index.php$ /$1 [R=301,L]
乾杯、マーク