wampserver apache 500 Internal Server Error解决办法

 2023-02-26    338  

Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please
contact the server administrator, admin@localhost and inform them of
the time the error occurred, and anything you might have done that may
have caused the error.
More information about this error may be available in the server error log.

排查:

wampserver apache 500 Internal Server Error解决办法

1:打开apache的错误日志D:\wamp\logs\apache_error.log,如果出现Invalid command ‘RewriteEngine’, 那说明apache没有开启rewrite模式

解决:

1:打开Apache安装目录下httpd.conf,搜索“LoadModule rewrite_modulemodules/mod_rewrite.so”,找到这一行,去掉前面的“#”;
2:找到“AllowOverride None”改为“AllowOverride All” 有两个地方需要修改
3:新建.haccess文件,放在当前网站根目录下,在.haccess文件中写伪静态规则,比如:

<IfModule mod_rewrite.c>

RewriteEngine on

RewriteCond %{REQUEST_FILENAME} !-d

RewriteCond %{REQUEST_FILENAME} !-f

RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]

</IfModule>

 4:重启apache

以上所述是小编给大家介绍的wampserver apache 500 Internal Server Error解决办法,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对77isp云服务器技术网的支持!

原文链接:http://www.77isp.com/post/34585.html

=========================================

http://www.77isp.com/ 为 “云服务器技术网” 唯一官方服务平台,请勿相信其他任何渠道。