我的.htaccess文件具有当前设置:
Options -Indexes
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ $1\.php
当我输入mydomain.com/file时没关系,但是当我访问mydomain.com/file/时出现错误500.
没有名为“file”的文件夹,任何路径都会出现此问题。
答案 0 :(得分:1)
尝试将-MultiViews添加到您的选项中。如果它仍然中断,请查看apache error_log,您将完全解释出现了什么问题。