• Home
  • Cisco
  • Exchange
  • Linux
  • Navision
  • Network
  • Virtualization
  • Windows
  • About
  •  

    htaccess – Allow from IP


    Prompt for access, except the allowed IP’s

    AuthUserFile /www/site.com/www/homepage/.htpasswd
    AuthType Basic
    AuthName “Password Protected Area”
    require valid-user
    order deny,allow
    deny from all
    allow from 123.123.123.123 122.122.122.122
    Satisfy Any