我有这个htaccess
脚本
Options -Indexes
Options +FollowSymlinks
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.+)$ /$1.php [L,QSA]
所以我可以访问一个页面,example.com/test
但是当我尝试访问example.com/test/
它时会引发 500 错误。有人可以告诉我需要改变什么才能工作吗?可能是一个愚蠢的错误。