|
#1
|
|||
|
|||
|
Blocking Visitors
I've read quite a few articles on here about blocking certain IP addresses from leaving comments. But what if I want to know how to block someone from even being able to view my blog, itself? How would I go about doing that?
__________________
Flip // www.flipthom.com |
|
#2
|
|||
|
|||
|
Apparently, I'm a forum loafer.
__________________
Flip // www.flipthom.com |
|
#3
|
||||
|
||||
|
You can also block a person's IP from viewing the site by inserting a few lines in your .htaccess file. Put the person's IP number at the end of the deny from line. Save, then upload the .htaccess file to your server where the current .htaccess file resides.
Code:
<Files 403.html> order allow,deny allow from all </Files> deny from xxx.xxx.xxx.xxx
__________________
My photoblog: KP Images |
|
#4
|
|||
|
|||
|
The best method is how dhdesign described it
And if you want to block from multiple user, add IPs separated by space:" Code:
deny from xxx.xxx.xxx.xxx yyy.yyy.yyy.yyy zzz.zzz.zzz.zzz |
| Post Reply |
| Thread Tools | |
|
|