HTACCESS / ErrorDocument - 如何提供410而不是403

时间:2013-04-29 13:30:02

标签: .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

1 个答案:

答案 0 :(得分:2)

如果您仍未找到任何解决方案,请尝试使用此方法 档案:.htaccess

ErrorDocument 403 /403.php

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

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