我正在尝试使用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>
问题屏幕截图:
期望
在Cpanel托管结果中查找200个状态