PHP写的页面无法访问,报HTTP500错误,这个是怎么回事

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP写的页面无法访问,报HTTP500错误,这个是怎么回事相关的知识,希望对你有一定的参考价值。

原因百分之80来自于网站根目录的config.php文件中资料库相关设定错误,这种错误排除,只要检查一下config.php文件中的伺服器和资料库名称、使用者名称、密码,还有资料库前缀字串,再来就是档案文件路径,只要是多一个或少一个符号、大小写错误、空格…绝对会赏你一个[HTTP 500 内部伺服器发生错误]的排头吃。

再来百分之10的错误来自于网站程式码设计错误也会出现[HTTP 500 内部伺服器发生错误]的页面,这个错误一来可以从视窗工具=>网际网路选项=>进阶=>去掉勾选:显示易懂的HTTP错误讯息,二来可以从网站根目录的error_log纪录中看出一些端倪,再来排除,还有百分之5刚好碰上访问的网站在维护,最多的例子是网站升级和网站迁移。
将错误讯息显示出来。

而显示的方法有两种,一种是设定php.ini;另一种是透过程式码开启,操作方法请参考以下:
一、设定php.ini

1.首先开启php.ini档

2.使用「Ctrl」+「F」搜寻【display_errors】

3.将「display_errors=Off」改为「display_errors=On」

4.重新启动Apache

5.重启开启网页

二、透过程式码开启

1.开启显示「伺服器错误(500)」的程式档

2.于程式档加入以下程式码

ini_set("display_errors", "On"); // 设定是否显示错误( On=显示, Off=隐藏 )

3.重启开启网页
参考技术A 有没有可能是你的程序导致服务器报错?500状态码的意思是服务器错误.建议查看下nginx日志. 参考技术B http 500一般都是php出错了。
要么是php语法错误,要么是处理过程中出错了。
可以通过查看php的错误日志来定位问题。

Codeigniter 4:无法使用apache mode_rewrite访问页面

我使用Wampserver在本地计算机上安装了Codeigniter 4.0.0.rc3,并创建了一个'people'控制器。我可以使用以下地址访问该页面:

http://127.0.0.1/election/index.php/people

但并非没有'index.php':

http://127.0.0.1/election/people

这是错误:

在此服务器上找不到请求的URL /Projects/Web/election/public/index.php/people。

。htaccess在公共目录中,并且正在工作,因为该错误在路径中显示index.php。

这是我的htaccess:

# Disable directory browsing
Options All -Indexes

# ----------------------------------------------------------------------
# Rewrite engine
# ----------------------------------------------------------------------

# Turning on the rewrite engine is necessary for the following rules and features.
# FollowSymLinks must be enabled for this to work.
<IfModule mod_rewrite.c>
    Options +FollowSymlinks
    RewriteEngine On

    # If you installed CodeIgniter in a subfolder, you will need to
    # change the following line to match the subfolder you need.
    # http://httpd.apache.org/docs/current/mod/mod_rewrite.html#rewritebase
    # RewriteBase /

    # Redirect Trailing Slashes...
    RewriteRule ^(.*)/$ /$1 [L,R=301]

    # Rewrite "www.example.com -> example.com"
    RewriteCond %{HTTPS} !=on
    RewriteCond %{HTTP_HOST} ^www.(.+)$ [NC]
    RewriteRule ^ http://%1%{REQUEST_URI} [R=301,L]

    # Checks to see if the user is attempting to access a valid file,
    # such as an image or css document, if this isn't true it sends the
    # request to the front controller, index.php
    RewriteCond $1 !^(index.php|assets|robots.txt)
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php/$1 [L]

    # Ensure Authorization header is passed along
    RewriteCond %{HTTP:Authorization} .
    RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
</IfModule>

<IfModule !mod_rewrite.c>
    # If we don't have mod_rewrite installed, all 404's
    # can be sent to index.php, and everything works as normal.
    ErrorDocument 404 index.php
</IfModule>

# Disable server signature start
    ServerSignature Off
# Disable server signature end
答案

在linux apache2中,以下工作也应适用于wampp的apache:

  1. 确保已启用mode_rewrite
  2. 编辑您的公共.htaccess文件:

    RewriteRule ^(。*)$ index.php / $ 1 [L]

to

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

((如果有人解释QSA声明,将不胜感激)

  1. 在app / Config / App.php中编辑:

    public $ indexPage ='index.php';

to

public $indexPage = '';

以上是关于PHP写的页面无法访问,报HTTP500错误,这个是怎么回事的主要内容,如果未能解决你的问题,请参考以下文章

PHP写的页面无法访问,报HTTP500错误,这个是怎么回事

在win7上装了一个apache服务器,访问页面的时候报500错误,各种方法都试

电脑打开网页 http500服务器错误 咋办?

HTTP错误500.19

HTTP 错误 500.19 - Internal Server Error 无法访问请求的页面,因为该页的相关配置数据无效。

exchange 2013 2016 共存环境 访问2016报HTTP 500错误