Block IP from accessing website using .htaccess

advertisement

To block certain ip address from accessing your website, just create a file with name .htaccess at your root directory with the content below:-

order allow,deny
deny from 192.168.0.1
allow from all

If you want to block multiple ip address using .htaccess simply add one ip address per line as below:-

order allow,deny
deny from 192.168.0.2
deny from 192.168.0.3
deny from 192.168.0.4
allow from all

You can even block a network range ip using .htaccess:-

order allow,deny
deny from 129.0.0
allow from all

Note: .htaccess only works in apache webserver, if you do not know what web server you are on, your can consult with your server administrator for more details.

Technorati Tags: , , , , , , , ,



Related Post


12 Responses to “Block IP from accessing website using .htaccess”

  1. Mike says:

    Beethink ip blocker bans country ips with .htaccess file for my windows 2008 servers.

  2. chua says:

    if u cant access your website, that may caused by many things.
    try to ping your domain if there is any reply and check if the ip is the same as your website ip.
    may times is caused by the DNS propagation problem.
    or u can try to flush your dns.
    http://www.techiecorner.com/35/how-to-flush-dns-cache-in-linux-windows-mac/

  3. Mary says:

    I have had the SAME issue happen. My hoster says there is nothing in the htaccess but I cannot access any of my sites at all. Others can and I can if I hide my ip as well. I really need to know Daniel what you did about this. I was also hacked in January so if this is some type of malicious attack I need to know how its being done – please connect with me.

    thanks

  4. chua says:

    at the document root path. If u r using CPanel, here’s the patch to your .htaccess

    /home/acname/public_html/.htaccess

  5. Andres says:

    Where can I create the .htaccess file? in which path?

  6. Zach says:

    Daniel:

    You should have emails with contact phone numbers from Lunar pages. If this is true, you should be able to call them, provide something like a billing credit card number, and then have them manually check your .htaccess files for any sign of IP additions like above.

    Also, you are POSITIVE it’s an IP attack like that? For example, you can access your sites from any other location except for your own home? Also: you’re receiving a static IP from your provider, and not a dynamic one? It just seems like a really weird issue.

    Good luck!

  7. rubytuesday says:

    Daniel, did you ever get a fix/answer to this? Good luck.

  8. Daniel says:

    Hi, please help someone.

    Somehow, someone has manually blocked my IP address (mine only) from accessing all of my personal websites. This is most probably a personal attack and I know who did it too. They have done this from the other side of the world.
    They even blocked my ip from accessing lunarpages which is the people he knew I would go to for help.

    PLEASE can someone tell me:
    1) How did they do it without having access to my ftp logins or my office/computers?
    2) How do I undo it

    FYI, I can access my sites when I hide my IP address and No one has touched my computers settings.

    Please tell me what this problem is and how to fix it. Big respect to anyone who can solve this riddle.

    Regards,
    Daniel

  9. Hikari says:

    Is there a way to block just specific URLs from an IP range, something like the RewriteRule 301 statements?

    It would be something like:
    for the following URLs/regular expressions
    deny access to this IP range

  10. Mouze says:

    You can also ban everyone except for your home IP address like so:
    order deny,allow
    allow from YOURIPADDRESSHERE
    deny from all

  11. Jeremy says:

    Another kind of cool thing to do is block say the whole 8 bit like
    deny from 41.0.0.0/8

    Which would block all 41.0.0.1 thru 41.255.255.255 all in one pop. Sometimes this is too much, but it is handy for blocking entire countries or areas on occassion.

    Then if there was one like 41.25.85.35 you wanted to allow:
    deny from 41.0.0.0/8
    allow from 41.25.85.35

    Sometimes it’s easier to deny a whole bunch and allow only a few than to type a couple hundred (one per line).

    Jeremy
    dialme.com

Leave a Reply