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.
我想 410 所有带有 .html 扩展名的网址。
比如说 xx.html、yy.html(都带有 .html)。
我如何通过 htacess 重写或重定向 410 规则来实现这一点?
HTTP状态410表示“Gone”,可以通过[G]mod_rewrite中的标志来完成。
410
[G]
RewriteRule \.html$ - [G]
请参阅G 标志的文档和 mod_rewrite的文档。
只需将这一行添加到您的 .htaccess 文件中
RedirectMatch gone "/*\.html$"
完成,这是 410 的自动 http 标头状态
在您的 .htaccess 文件中使用它。
RewriteEngine On RewriteRule \.html$ - [G]