【发布时间】:2012-02-05 15:25:05
【问题描述】:
我收到以下错误
服务器遇到内部错误,无法完成您的请求。服务器过载或 CGI 脚本出错。
如果您认为这是服务器错误,请联系网站管理员。
错误 500
184.82.228.38 2012 年 1 月 9 日星期一 02:48:12 Apache/2.2.21 (Unix) DAV/2 mod_ssl/2.2.21 OpenSSL/1.0.0c PHP/5.3.8 mod_apreq2-20090110/2.7.1 mod_perl/2.0.5 Perl/v5.10.1
我正在运行 XAMPP 服务器 这是我的 htaccess 文件,我不明白问题出在哪里。
AuthType Basic
AuthName "Members Area"
AuthUserFile /opt/lampp/htdocs/.htpasswd
Require valid-user
<FilesMatch "(async-upload\.php|wp-cron\.php|xmlrpc\.php)$">
Satisfy Any
Order allow,deny
Allow from all
Deny from none
</FilesMatch>
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /members/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /members/index.php [L]
</IfModule>
# END WordPress
【问题讨论】:
-
错误日志中有什么内容?
-
你找到答案了吗?