Forum Moderators: phranque
could some body give me some advise on my htacces file please.
I did try to add 2 more IP's (the last and second last) yet there is some problem since I see them IP's keep showing up in my logs so I asume I screwed up.
The first after the main container, limelight seem to work since they are gone.
In fact the second last i like would be whole range from xx-xx as last 2 digits when locking for the orginal I seen they have several.
I like to ban them all, server wide. Even better I like to send them somewhere like Google or seamstress or so....
A apericiate any advise and please no look at my english, stiil pretty bad... aint my first language
<IfModule mod_rewrite.c>
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !http://www.#*$!#*$!#*$!x-live.com
RewriteRule (wp-content/postpics.*\.(gif¦jpg¦jpeg¦png)$) [#*$!#*$!#*$!x-live.com...] [L]
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
<Limit GET HEAD POST>
order allow,deny
##--> Bye bye Limelight Networks. You are not welcome here.
deny from 208.111.128.0/18
allow from all
</LIMIT>
<Limit GET HEAD POST>
order allow,deny
##--> Bye. You are not welcome here.
deny from 68.8.0.xx
allow from all
</LIMIT>
<Limit GET HEAD POST>
order allow,deny
##--> bye bye. You are not welcome here.
deny from 66.54.170.#*$!
allow from all
</LIMIT>
Try the following (as an aside denial does NOT stop the requests and/or denials from appearing in your logs.)
<Limit GET HEAD POST>
order allow,deny
##--> Bye bye Limelight Networks. You are not welcome here.
deny from 208.111.128.0/18
deny from 68.8.0.xx
deny from 66.54.170.#*$!
allow from all
</LIMIT>