1

谁能告诉我如何使用 410 而不是 403(不提供 403 中的任何 html 页面)?

喜欢而不是:

ErrorDocument 403 /403.html 

我们需要这样的东西:

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

1 回答 1

2

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

ErrorDocument 403 /403.php

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

<?php header("HTTP/1.0 410 Gone"); ?>
于 2013-05-23T09:53:23.280 回答