Deny Visitors by IP Address Using .htaccess File
Advertisements
How to Deny Visitors by IP Address Using .htaccess File
Using .htaccess file you can deny or allow any visitor to access your website. This is extremely useful for blocking unwanted visitors, or to only allow the web site owner access to certain sections of the web site, such as an administration area.
Syntax
order allow,deny deny from 255.0.0.0 deny from 192.45.3.2 allow from all
In above syntax we deny two IP 255.0.0.0 and 192.45.3.2 but remaining IP allow to access our website.
Syntax
order allow,deny allow from 255.0.0.0 deny from all
In above syntax block all visitors except those with the IP address '255.0.0.0', which you should replace with your own IP address.
Google Advertisment