博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
wampserver apache 500 Internal Server Error解决办法
阅读量:5863 次
发布时间:2019-06-19

本文共 910 字,大约阅读时间需要 3 分钟。

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.

排查:

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

转载于:https://www.cnblogs.com/afish/p/4378051.html

你可能感兴趣的文章
linux之vim配置
查看>>
include a image in devexpress datagrid
查看>>
baiduMap试手《办理进京证和市区警察查询进京证的地址浏览》
查看>>
Oracle
查看>>
详述Linux ftp命令的使用方法
查看>>
paip.php 与js 的相似性以及为什么它们这么烂还很流行。。
查看>>
NSIS操作系统环境变量
查看>>
MSSQLSERVER服务无法启动的解决方案
查看>>
恢复数据库备份时提示日志错误
查看>>
java之内部类
查看>>
如何扩展 Visual Studio 编辑器
查看>>
document.domain跨域
查看>>
Python with ASP
查看>>
请放下你的无效社交
查看>>
PowerShell 批量签入SharePoint Document Library中的文件
查看>>
maven一键部署tomcat war包
查看>>
能产生粒子效果的CAEmitterLayer
查看>>
javaweb学习总结(四)——Http协议
查看>>
opencv2函数学习之threshold:实现图像阈值化
查看>>
Spring Security笔记:自定义登录页
查看>>