Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们有许多网站现已被关闭和删除,但仍被 Google 索引,即使它们返回 404。
我想为域上的所有内容设置 http 410,我将如何在 htaccess 中执行此操作?使用通配符?
I want to set http 410 for everything on the domain
您可以将此规则用作文件中的第一条规则DOCUMENT_ROOT/.htaccess:
DOCUMENT_ROOT/.htaccess
RewriteEngine On RewriteCond %{HTTP_HOST} ^(www\.)?domain\.com$ [NC] RewriteRule ^ - [L,R=410]
不要忘记替换domain.com为您的实际域名。
domain.com