PHP-为403和404错误文档设置200状态代码,该文档在localhost中运行,但在CPanel中不运行

时间:2019-05-06 18:44:36

标签: php .htaccess xampp cpanel

我正在尝试使用php方法 http_response_code

设置200个响应代码的Custom 403和404页面

它在具有200个响应代码的localhost [XAMP Server]中工作正常。 但是它在CPanel Hosting中抛出403和404响应,而不是200。

.htaccess

Options -Indexes
DirectorySlash Off
DirectoryIndex index.html .index.php index.php

ErrorDocument 403 /response.php
ErrorDocument 404 /response.php

response.php

<?php
http_response_code(200);
?>

<!-- HTML Document -->
<!DOCTYPE html>
<html>
    <head>
        Content...
    </head>
    <body>
        Content...
    </body>
</html>

问题屏幕截图:

LocalHost Screenshot

Cpanel Hosted Screenshot

期望

在Cpanel托管结果中查找200个状态

0 个答案:

没有答案