Forum Moderators: phranque
Here's the IP example:
Crawl one:
aaa.bbb.cc.ddd
Crawl two:
aaa.bbb.cc.eee
etc
For my .htaccess file, if I want to deny all IP's in that final range (in this example: "ddd" or "eee"), do I need to put the period after "cc"?
So, would it be this:
Deny from aaa.bbb.cc.
or this:
Deny from aaa.bbb.cc
Perhaps it doesn't matter, but I want to make sure I get this right... thanks for any feedback...
........................
All are equivalent, using a partial address, network/CIDR notation, and network/netmask notation respectively, and will block the IP address range from aa.bb.cc.0 through aa.bb.cc.255
See Apache mod_access [httpd.apache.org] for more info.
Jim