%{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]
干杯,马克