如何通过.htaccess在单页上设置403 Forbidden



如何使用403禁用1个单页。我一直在目录级别上使用下面的以下代码,就像在我的WordPress网站/wp-content/上一样,/wp-includes/&它是有效的。但是,如何实现单个文件,如/example-service.html,以便当任何人访问页面\example-server.html,返回403禁止(在.htaccess中(

<files>
order allow, deny
deny from all
</files>

您可以使用以下RewriteRule/example-service.html重定向到403错误。

RewriteEngine On
RewriteRule ^example-service.html$ - [R=403]

相关内容

  • 没有找到相关文章

最新更新