0

这是我的 .htaccess 文件代码,它位于 localhost 的根目录中,没有它可以正常工作,所以它有问题:

RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRUl .* /index.php [L]

尝试加载任何页面时收到以下错误消息:

服务器错误!
服务器遇到内部错误,无法完成您的请求。服务器过载或 CGI 脚本中存在错误。
[...]
2013 年 6 月 7 日下午 12:34:52
Apache/2.2.14 (Win32) DAV/2 mod_ssl/2.2.14 OpenSSL/0.9.8l mod_autoindex_color PHP/5.3.1 mod_apreq2-20090110/2.7.1 mod_perl/2.0.4 Perl/v5.10.1

4

1 回答 1

0

错误在.htaccess文件的最后一行,语法错误,应该是:

RewriteRule .* /index.php [L]

不管怎么说,还是要谢谢你 :-)

于 2013-07-06T17:40:12.977 回答