我的.htaccess文件存在问题 我在PHP中用MVC创建了一个简单的网站,所以在公共根目录中我有一个.htaccess文件,其中RewriteBase是URL,但是当我想在浏览器中打开网站时,它会返回500内部服务错误。我不知道问题出在我的服务器或我的.htaccess中 这是我的.htaccess文件:
Options -MultiViews
RewriteEngine On
RewriteBase the/path/of/website
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.+)$ index.php?url=$1 [QSA,L]