.htaccess HTACCESS/ErrorDocument-如何为410而不是403提供服务

.htaccess HTACCESS/ErrorDocument-如何为410而不是403提供服务,.htaccess,http-status-code-403,http-status-code-410,.htaccess,Http Status Code 403,Http Status Code 410,谁能告诉我如何使用服务器410而不是403(在403中不提供任何html页面) 喜欢而不是: ErrorDocument 403 /403.html 我们需要这样的东西: ErrorDocument 403:410 #/i.e. 403 will show default browser's 410/Gone error 如果仍然没有找到任何解决方案,请尝试此解决方案 文件:.htaccess ErrorDocument 403 /403.php 在403.php中使用以下代码: <

谁能告诉我如何使用服务器410而不是403(在403中不提供任何html页面)

喜欢而不是:

ErrorDocument 403 /403.html 
我们需要这样的东西:

ErrorDocument 403:410 #/i.e. 403 will show default browser's 410/Gone error

如果仍然没有找到任何解决方案,请尝试此解决方案
文件:.htaccess

ErrorDocument 403 /403.php
在403.php中使用以下代码:

<?php header("HTTP/1.0 410 Gone"); ?>