How to ban any IP address via .htaccess?

If someone is abusing your website and you want to block abuser's IP address from accessing your website, you can add this line to your .htaccess file.

order allow,deny
deny fromĀ IP-ADDRESS
allow from all

Replace "IP-ADDRESS" with the IP address you want to block, for example 192.168.0.1

  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

How to protect a folder with username and password in cPanel?

You can lock a directory with a password by using the cPanel "Password Protected Directories"...

How to ban any IP address via cPanel?

If someone is abusing your website and you want to block abuser's IP address from accessing your...

How to protect your website's images from an external website?

External websites can use <img/> tag to display an image from your website on other...

How to disable directory browsing using .htaccess?

For security reasons it is recommended to disable directory browsing of your website so no one...

How to protect your .htaccess file?

For security reasons it is recommended to protect your .htaccess fileĀ from unauthorized...