Best Way to restrict access to CMS Panel

Hi, iam looking for a way to restrict this access only for certain IPs. I´ve seen that is performed with "restrict_to_remote_ip" but iam not sure if this applies over all the website.

Many thanks

Comments

  • edited September 2016
    restrict_to_remote_ip applies only to the admin area. There is a "dev_password" config parameter that can be used as well to help restrict users. Otherwise, you can use .htaccess:
    order deny,allow deny from all allow from xx.xxx.xx.xx #IP 1 allow from xx.xxx.xx.xx #IP 2 allow from xx.xxx.xx.xx #IP 3 ...
Sign In or Register to comment.