我是mvc框架的初学者。我正在尝试根据教程创建一个自己的。
他们提供的.htaccess文件包含:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^(.+)$ index.php?url=$1 [QSA, L]
我收到500服务器错误:服务器遇到内部错误,无法完成您的请求。服务器过载或CGI脚本出错。
我检查了httpd.conf以检查mode_rewrite是否未被注释。有人能帮我吗?我在ubuntu 12.04上使用lampp
最佳答案
RewriteRule ^(.+)$ index.php?url=$1 [QSA, L]
改为:
RewriteRule ^(.+)$ index.php?url=$1 [QSA,L]
注,“[qsa,l]”对[qsa,l]
复制错误,删除空间,工作)。我在用WAMP。