编程语言
首页 > 编程语言> > .htaccess通过PHP显示404,403,500,错误页面

.htaccess通过PHP显示404,403,500,错误页面

作者:互联网

如何从PHP文件中显示.htaccess显示错误?我的意思是当我搜索一个不存在的文件.htaccess应该显示error.php的错误页面,但error.php需要一个带错误代码的参数.

注意:.htaccess应该直接在当前URL上显示错误而不重定向.我能这样做还是不可能?还有其他方法吗?

解决方法:

您正在寻找ErrorDocument.

在.htaccess中指定要处理的代码,例如:

ErrorDocument 403 /error.php
ErrorDocument 404 /error.php
ErrorDocument 500 /error.php

并在error.php中,处理错误代码,如:

<?php
    $code = $_SERVER['REDIRECT_STATUS'];
    $codes = array(
        403 => 'Forbidden',
        404 => 'Not Found',
        500 => 'Internal Server Error'
    );
    $source_url = 'http'.((!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] != 'off') ? 's' : '').'://'.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
    if (array_key_exists($code, $codes) && is_numeric($code)) {
        die("Error $code: {$codes[$code]}");
    } else {
        die('Unknown error');
    }
?>

标签:htaccess,php,apache,errordocument
来源: https://codeday.me/bug/20191003/1846498.html