1
0
Fork 0
Browse Source

Semalt.com referer blocking added

master
Rogier Neeleman 10 years ago
parent
commit
7e3313181e
  1. 11
      howto/apache_webserver_rewrite.txt

11
howto/apache_webserver_rewrite.txt

@ -26,3 +26,14 @@ To simple forward your request to your internal server2 on port 8080: @@ -26,3 +26,14 @@ To simple forward your request to your internal server2 on port 8080:
RewriteEngine On
RewriteRule ^/app/(.*)$ http://server2:8080/app1/$1 [P]
The website semalt.com is spamming us with referers that actually don't exsists.
To clean you statistics and send the basterts back to where they came from:
# Block semalt.com referer
RewriteEngine on
RewriteCond %{HTTP_REFERER} semalt\.com [NC,OR]
RewriteCond %{HTTP_REFERER} ^http://([^.]+\.)*semalt\.com [NC,OR]
RewriteCond %{HTTP_REFERER} ^http://([^.]+\.)*kambasoft\.com [NC,OR]
RewriteCond %{HTTP_REFERER} youtube-downloader\.savetubevideo\.com [NC]
RewriteRule (.*) http://www.semalt.com [R=301,L]

Loading…
Cancel
Save