php – CodeIgniter 500内部服务器错误

前端之家收集整理的这篇文章主要介绍了php – CodeIgniter 500内部服务器错误前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我下载了使用CodeIgniter编写的 PHP脚本.当我从localhost运行它时,在转到admin文件夹时,它再次显示localhost.此外,当从我的Web主机运行时,它显示500内部服务器错误.

我从http://localhost/myproj运行该网站它的工作原理.然后,当我尝试进入位于http://localhost/myproj/administrator管理页面时,它会产生500内部服务器错误.

我在这里读到这可能是由于.htaccess文件中的错误代码造成的.这是我现在的.htaccess文件

RewriteEngine On
RewriteBase /

RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)/$$1 [L,R=301]

RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$/index.PHP/$1 [L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$/index.PHP/$1 [L]
# Without mod_rewrite,route 404's to the front controller
ErrorDocument 404 /index.PHP

请帮我.我知道这可能是一个非常小的问题,但我无法找到错误.

500错误(使用CodeIgniter)的问题,使用不同的apache设置,当PHP配置出错时显示500错误.

以下是它如何使用CodeIgniter触发500错误

>脚本错误(PHP配置错误,缺少包等…)
> PHP“致命错误

请检查您的apache错误日志,那里应该有一些有趣的信息.

原文链接:https://www.f2er.com/php/138257.html

猜你在找的PHP相关文章