我想拒绝访问使用CodeIgniter创建的网页的管理网站。
这是链接 www.mydomain.com/admin
我使用以下代码
创建了 htaccess 文件Order Deny,Allow
Deny from all
Allow from xx.xxx.xxx.xxx
我将htaccess文件放在 application / view / admin
中显然它不起作用。 拒绝CodeIgniter项目中特定文件夹的正确方法是什么?
答案 0 :(得分:0)
修改强>
为什么不在Admin
类构造函数中添加ip检查?
public function __construct()
{
parent::__construct();
if ($this->input->ip_address() != 'xx.xxx.xxx.xxx')
{
show_404();
}
}