限制WordPress的页面通过IP(Restrict Wordpress Page by IP)

2019-10-19 14:30发布

我有一个WordPress的网站,我想限制一个页面中只能通过特定的IP地址来访问。 该网页是我的WordPress主题的模板。 模板的PHP文件名为alley.php

以下是我尝试在.htaccess文件中,放置在模板目录

<FilesMatch alley.php>
 Order Allow,Deny
 Allow from xxx.xxx.xxx.xxx
 Deny from all
</FilesMatch>

但它不是为我工作。

提前致谢!

Answer 1:

你几乎拥有它,你有让周围否认错误的方式

<Files alley.php>
    order deny,allow
    deny from all
    allow from xxx.xxx.xxx.xxx
</Files>


Answer 2:

我觉得这个插件将是对你有帮助,

http://wordpress.org/plugins/restricted-site-access/



文章来源: Restrict Wordpress Page by IP