我在我的网站上有一个问题.htaccessin

时间:2016-04-04 12:11:11

标签: .htaccess

我的.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]

0 个答案:

没有答案