Last active
March 27, 2024 12:14
-
-
Save Jany-M/4cae2b84446d59b10c18d68d31ab639b to your computer and use it in GitHub Desktop.
[WP] htacces for best security & caching settings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#################################################### | |
# | |
# MIMETYPES | |
# | |
#################################################### | |
AddType video/mp4 mp4 m4v | |
AddType audio/mp4 m4a | |
AddType video/ogg ogv | |
AddType audio/ogg ogg oga | |
AddType video/webm webm | |
AddType application/vnd.ms-fontobject .eot | |
AddType application/x-font-ttf .ttf | |
AddType application/x-font-opentype .otf | |
AddType application/x-font-woff .woff | |
AddType font/woff2 woff2 | |
AddType image/svg+xml .svg | |
#################################################### | |
# | |
# CUSTOM | |
# | |
#################################################### | |
# Force SSL on all pages | |
#<IfModule mod_rewrite.c> | |
# RewriteEngine On | |
# RewriteCond %{SERVER_PORT} !^443$ | |
# RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L] | |
#</IfModule> | |
# Oauth 1.0 - WP REST API v2 | |
<IfModule mod_rewrite.c> | |
RewriteEngine On | |
RewriteRule ^index\.php$ - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L] | |
</IfModule> | |
# Force text or pdf to be downloaded, not open in browser | |
AddType application/octet-stream .pdf .txt | |
# Allow fonts, css and js to be used by any domain (incl. subdomains) | |
#<IfModule mod_headers.c> | |
# <FilesMatch "\.(ttf|ttc|otf|eot|woff|woff2|font.css|css|js)$"> | |
# Header set Access-Control-Allow-Origin "*" | |
# </FilesMatch> | |
#</IfModule> | |
# Redirect requests from old domains | |
#<IfModule mod_rewrite.c> | |
# #RewriteEngine On | |
# #RewriteCond %{HTTP_HOST} ^site.com$ [NC] | |
# #RewriteRule ^.*$ https://www.newsite.com [L,R=301] | |
# RewriteEngine On | |
# RewriteCond %{HTTP_HOST} ^othersite.com$ [NC] | |
# RewriteRule ^.*$ https://www.newsite.com [L,R=301] | |
#</IfModule> | |
# NO HOTLINKING | |
#<IfModule mod_rewrite.c> | |
# RewriteEngine on | |
# RewriteCond %{HTTP_REFERER} !^$ | |
# RewriteCond %{HTTP_REFERER} !^http(s)?://(www\.)?site.com [NC] | |
# RewriteRule \.(jpg|jpeg|png|gif)$ https://www.site.com/nohotlinking.jpg [NC,R,L] | |
#</IfModule> | |
# This is a customized WP htaccess to use with WP Imager | |
<IfModule mod_rewrite.c> | |
RewriteEngine On | |
RewriteBase / | |
RewriteRule ^index\.php$ - [L] | |
RewriteCond %{REQUEST_FILENAME} !-f | |
RewriteCond %{REQUEST_FILENAME} !-d | |
RewriteCond %{REQUEST_URI} !^/(cache_img) [NC] | |
RewriteRule . /index.php [L] | |
RewriteRule ^cache_img/r/(.*)x(.*)-(.*)/b/(.*)/i/(.*) cache_img/tt.php?src=https://%{HTTP_HOST}/$5&w=$1&h=$2&zc=$3&q=100&cc=$4 [L] | |
</IfModule> | |
# End of Customized htaccess for WP-Imager | |
# Allow fonts, css and js to be used by any domain (incl. subdomains) | |
#<IfModule mod_headers.c> | |
# <FilesMatch "\.(ttf|ttc|otf|eot|woff|woff2|font.css|css|js)$"> | |
# Header set Access-Control-Allow-Origin "*" | |
# </FilesMatch> | |
#</IfModule> | |
#################################################### | |
# | |
# CACHING | |
# | |
#################################################### | |
<ifModule mod_deflate.c> | |
<filesMatch "\.(js|css|html|php)$"> | |
SetOutputFilter DEFLATE | |
</filesMatch> | |
# Enable compression | |
AddOutputFilterByType DEFLATE text/css text/javascript application/x-javascript text/html text/plain text/xml image/x-icon | |
<IfModule mod_setenvif.c> | |
BrowserMatch ^Mozilla/4 gzip-only-text/html | |
BrowserMatch ^Mozilla/4\.0[678] no-gzip | |
BrowserMatch \bMSIE !no-gzip !gzip-only-text/html | |
BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html | |
</IfModule> | |
<IfModule mod_headers.c> | |
# Make sure proxies deliver correct content | |
Header append Vary User-Agent env=!dont-vary | |
# Ensure proxies deliver compressed content correctly | |
Header append Vary Accept-Encoding | |
</IfModule> | |
</IfModule> | |
<IfModule mod_headers.c> | |
FileETag None | |
Header unset ETag | |
Header unset Pragma | |
Header unset Last-Modified | |
Header append Cache-Control "public, no-transform, must-revalidate" | |
Header set Last-modified "Mon, 22 Dec 2019 00:00:01 GMT" | |
</IfModule> | |
# Expires Headers | |
# for Apache expires.conf check https://gist.github.com/Jany-M/2d19ff8fc00a642b7302e5ed20d5c45b | |
<IfModule mod_expires.c> | |
ExpiresActive on | |
ExpiresByType application/vnd.ms-fontobject "access plus 1 year" | |
ExpiresByType application/x-font-ttf "access plus 1 year" | |
ExpiresByType application/x-font-opentype "access plus 1 year" | |
ExpiresByType application/x-font-woff "access plus 1 year" | |
ExpiresByType font/woff2 "access plus 1 year" | |
ExpiresByType font/opentype "access plus 1 year" | |
ExpiresByType application/font-woff "access plus 1 year" | |
ExpiresByType image/svg+xml "access plus 1 year" | |
ExpiresByType image/webp "access plus 1 year" | |
ExpiresByType image/gif "access plus 1 year" | |
ExpiresByType image/jpg "access plus 1 year" | |
ExpiresByType image/jpeg "access plus 1 year" | |
ExpiresByType image/png "access plus 1 year" | |
ExpiresByType image/x-icon "access plus 1 year" | |
ExpiresByType image/x-ico "access plus 1 year" | |
ExpiresByType text/plain "access plus 3 month" | |
ExpiresByType text/css "access 1 week" | |
ExpiresByType text/javascript "access 1 week" | |
ExpiresByType text/html "access 1 week" | |
ExpiresByType text/xml "access plus 3 month" | |
ExpiresByType application/javascript "access 1 week" | |
ExpiresByType application/x-javascript "access 1 week" | |
ExpiresByType application/xhtml-xml "access 3 month" | |
ExpiresByType application/pdf "access plus 3 month" | |
ExpiresByType application/xml "access plus 3 month" | |
ExpiresByType application/rss+xml "access 1 week" | |
ExpiresByType application/json "access plus 1 seconds" | |
ExpiresByType application/x-shockwave-flash "access 3 month" | |
ExpiresByType image/jpe "access plus 1 year" | |
ExpiresByType video/ogg "access plus 1 year" | |
ExpiresByType audio/ogg "access plus 1 year" | |
ExpiresByType video/mp4 "access plus 1 year" | |
ExpiresByType video/webm "access plus 1 year" | |
ExpiresByType audio/mp3 "access plus 1 year" | |
ExpiresDefault "access plus 1 year" | |
</IfModule> | |
# Cache-control Headers | |
<FilesMatch "\.(flv|gif|jpg|jpeg|png|ico|webp|woff|woff2|pdf|swf)$"> | |
Header append Cache-Control "public" | |
#Header set Cache-Control "max-age=29030400" | |
</FilesMatch> | |
<filesMatch "\.(css)$"> | |
Header append Cache-Control "public" | |
#Header set Cache-Control "max-age=604800" | |
</filesMatch> | |
<filesMatch "\.(js)$"> | |
Header append Cache-Control "private" | |
#Header set Cache-Control "max-age=29030400" | |
</filesMatch> | |
<filesMatch "\.(x?html?|php|pl|php|cgi|spl|scgi|fcgi|txt|htm)$"> | |
Header append Cache-Control "private, must-revalidate" | |
</FilesMatch> | |
#################################################### | |
# | |
# SECURITY | |
# | |
#################################################### | |
# Disable xmlrpc except for Jetpack | |
# https://jetpack.com/support/hosting-reference-doc/ | |
# https://webdogs.com/xml-rpc-validator/# | |
<Files xmlrpc.php> | |
Order Deny,Allow | |
# Whitelist Jetpack/ Automattic CIDR IP Address Blocks | |
Allow from 122.248.245.244/32 | |
Allow from 54.217.201.243/32 | |
Allow from 54.232.116.4/32 | |
Allow from 192.0.80.0/20 | |
Allow from 192.0.96.0/20 | |
Allow from 192.0.112.0/20 | |
Allow from 195.234.108.0/22 | |
Deny from all | |
#Satisfy All | |
#ErrorDocument 403 http://127.0.0.1/ | |
</Files> | |
<FilesMatch "^(xmlrpc\.php)"> | |
Order Deny,Allow | |
# Whitelist Jetpack/ Automattic CIDR IP Address Blocks | |
Allow from 122.248.245.244/32 | |
Allow from 54.217.201.243/32 | |
Allow from 54.232.116.4/32 | |
Allow from 192.0.80.0/20 | |
Allow from 192.0.96.0/20 | |
Allow from 192.0.112.0/20 | |
Allow from 195.234.108.0/22 | |
Deny from all | |
</FilesMatch> | |
<IfModule mod_headers.c> | |
FileETag None | |
Header unset ETag | |
Header unset Pragma | |
Header unset Last-Modified | |
Header append Cache-Control "public, no-transform, must-revalidate" | |
Header set Last-modified "Mon, 22 Dec 2019 00:00:01 GMT" | |
Header set X-Content-Type-Options nosniff | |
Header add Strict-Transport-Security "max-age=31415926;includeSubDomains" | |
Header set Content-Security-Policy "default-src 'self' https://*.googleapis.com https://*.gravatar.com https://*.google-analytics.com https://*.fontawesome.com https://*.analytics.google.com https://*.doubleclick.net https://*.cookiebot.com https://*.shambix.com; script-src 'self' 'unsafe-inline' https://*.cloudflare.com https://*.googletagmanager.com https://*.twitter.com https://*.disqus.com https://*.fontawesome.com https://*.cookiebot.com https://*.wp.com https://*.shambix.com; font-src 'self' https://*.googleapis.com https://*.gstatic.com https://*.fontawesome.com https://*.shambix.com data: ; style-src 'self' 'unsafe-inline' https://*.googleapis.com https://*.shambix.com; img-src 'self' https://*.gravatar.com https://*.wordpress.com https://*.w.org https://*.wp.com https://*.cookiebot.com https://*.shambix.com data: ; object-src 'none'; frame-ancestors 'self' https://*.shambix.com; child-src 'self' https://disqus.com https://*.twitter.com https://*.cookiebot.com https://*.shambix.com blob: ; | |
" | |
Header set X-Xss-Protection "1; mode=block" | |
Header set X-Frame-Options "SAMEORIGIN" | |
Header set X-Content-Type-Options "nosniff" | |
Header set Referrer-Policy "strict-origin-when-cross-origin" | |
Header set Permissions-Policy "geolocation=self" | |
# doesnt work | |
#Header add Content-Security-Policy: frame-ancestors 'none'; # doesnt work | |
</IfModule> | |
# No web server version and indexes | |
ServerSignature Off | |
# Disable directory browsing | |
Options All -Indexes | |
# Block WordPress xmlrpc.php requests | |
#<Files xmlrpc.php> | |
# order deny,allow | |
# deny from all | |
# only allow from this IP | |
#allow from xxx.xxx.xxx.xxx | |
#</Files> | |
# Dont allow direct access to any file | |
#Order deny,allow | |
#Deny from all | |
# exceptions | |
#<Files ~ “.(xml|jpeg|jpg|png|gif|js|css|xls|xlsx|doc|docx|ppt|pptx|pdf|otf|ttf|svg)$”> | |
# Allow from all | |
#</Files> | |
# Protections again Injections | |
<IfModule mod_rewrite.c> | |
Options +FollowSymLinks | |
RewriteEngine On | |
# Block suspicious request methods | |
RewriteCond %{REQUEST_METHOD} ^(HEAD|TRACE|DELETE|TRACK|DEBUG) [NC] | |
RewriteRule ^(.*)$ - [F,L] | |
# Block WP timthumb hack | |
RewriteCond %{REQUEST_URI} (timthumb\.php|phpthumb\.php|thumb\.php|thumbs\.php) [NC] | |
RewriteRule . - [S=1] | |
# Block suspicious user agents and requests | |
RewriteCond %{HTTP_USER_AGENT} (libwww-perl|wget|python|nikto|curl|scan|java|winhttp|clshttp|loader) [NC,OR] | |
RewriteCond %{HTTP_USER_AGENT} (<|>|'|%0A|%0D|%27|%3C|%3E|%00) [NC,OR] | |
RewriteCond %{HTTP_USER_AGENT} (;|<|>|'|"|\)|\(|%0A|%0D|%22|%27|%28|%3C|%3E|%00).*(libwww-perl|wget|python|nikto|curl|scan|java|winhttp|HTTrack|clshttp|archiver|loader|email|harvest|extract|grab|miner|elfinder) [NC,OR] | |
RewriteCond %{THE_REQUEST} \?\ HTTP/ [NC,OR] | |
RewriteCond %{THE_REQUEST} \/\*\ HTTP/ [NC,OR] | |
RewriteCond %{THE_REQUEST} etc/passwd [NC,OR] | |
RewriteCond %{THE_REQUEST} cgi-bin [NC,OR] | |
RewriteCond %{THE_REQUEST} (%0A|%0D) [NC,OR] | |
# Block MySQL injections, RFI, base64, etc. | |
#RewriteCond %{QUERY_STRING} [a-zA-Z0-9_]=http:// [OR] | |
#RewriteCond %{QUERY_STRING} [a-zA-Z0-9_]=(\.\.//?)+ [OR] | |
RewriteCond %{QUERY_STRING} [a-zA-Z0-9_]=/([a-z0-9_.]//?)+ [NC,OR] | |
RewriteCond %{QUERY_STRING} \=PHP[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12} [NC,OR] | |
RewriteCond %{QUERY_STRING} (\.\./|\.\.) [OR] | |
RewriteCond %{QUERY_STRING} ftp\: [NC,OR] | |
#RewriteCond %{QUERY_STRING} http\: [NC,OR] | |
#RewriteCond %{QUERY_STRING} https\: [NC,OR] | |
RewriteCond %{QUERY_STRING} \=\|w\| [NC,OR] | |
RewriteCond %{QUERY_STRING} ^(.*)/self/(.*)$ [NC,OR] | |
RewriteCond %{QUERY_STRING} ^(.*)cPath=http://(.*)$ [NC,OR] | |
RewriteCond %{QUERY_STRING} (\<|%3C).*script.*(\>|%3E) [NC,OR] | |
RewriteCond %{QUERY_STRING} (<|%3C)([^s]*s)+cript.*(>|%3E) [NC,OR] | |
RewriteCond %{QUERY_STRING} (\<|%3C).*iframe.*(\>|%3E) [NC,OR] | |
RewriteCond %{QUERY_STRING} (<|%3C)([^i]*i)+frame.*(>|%3E) [NC,OR] | |
RewriteCond %{QUERY_STRING} base64_encode.*\(.*\) [NC,OR] | |
RewriteCond %{QUERY_STRING} base64_(en|de)code[^(]*\([^)]*\) [NC,OR] | |
RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR] | |
RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2}) [OR] | |
RewriteCond %{QUERY_STRING} ^.*(\[|\]|\(|\)|<|>).* [NC,OR] | |
RewriteCond %{QUERY_STRING} (NULL|OUTFILE|LOAD_FILE) [OR] | |
RewriteCond %{QUERY_STRING} (\./|\../|\.../)+(motd|etc|bin) [NC,OR] | |
RewriteCond %{QUERY_STRING} (localhost|loopback|127\.0\.0\.1) [NC,OR] | |
RewriteCond %{QUERY_STRING} (<|>|'|%0A|%0D|%27|%3C|%3E|%00) [NC,OR] | |
RewriteCond %{QUERY_STRING} concat[^\(]*\( [NC,OR] | |
RewriteCond %{QUERY_STRING} union([^s]*s)+elect [NC,OR] | |
RewriteCond %{QUERY_STRING} union([^a]*a)+ll([^s]*s)+elect [NC,OR] | |
RewriteCond %{QUERY_STRING} (;|<|>|'|"|\)|%0A|%0D|%22|%27|%3C|%3E|%00).*(/\*|union|select|insert|drop|delete|update|cast|create|char|convert|alter|declare|order|script|set|md5|benchmark|encode) [NC,OR] | |
RewriteCond %{QUERY_STRING} (sp_executesql) [NC] | |
RewriteRule ^(.*)$ - [F,L] | |
</IfModule> | |
# Block access to PHP error log | |
<Files error.log> | |
Order allow,deny | |
Deny from all | |
</Files> | |
# Block access to WP debug log | |
<Files debug.log> | |
Order allow,deny | |
Deny from all | |
</Files> | |
# BLOCK ACCESS TO HTACCESS | |
<files ~ "^.*\.([Hh][Tt][Aa])"> | |
order allow,deny | |
deny from all | |
satisfy all | |
</files> | |
# BLOCK ACCESS TO CONFIG.PHP | |
<files wp-config.php> | |
order allow,deny | |
deny from all | |
</files> | |
# Block wp-includes folder and files | |
<IfModule mod_rewrite.c> | |
RewriteEngine On | |
RewriteBase / | |
RewriteRule ^wp-admin/includes/ - [F,L] | |
RewriteRule !^wp-includes/ - [S=3] | |
# comment this next line for WP MU | |
RewriteRule ^wp-includes/[^/]+\.php$ - [F,L] | |
RewriteRule ^wp-includes/js/tinymce/langs/.+\.php - [F,L] | |
RewriteRule ^wp-includes/theme-compat/ - [F,L] | |
</IfModule> | |
# Kill PHP Execution in the Uploads folder | |
# https://codex.wordpress.org/htaccess_for_subdirectories | |
#<Directory wp-content/uploads> | |
# <FilesMatch "(?i)\.(php|php3?|phtml)$"> | |
# Order Deny,Allow | |
# Deny from All | |
# </FilesMatch> | |
#</Directory> | |
# Redirect access from certain websites referrals | |
<IfModule mod_rewrite.c> | |
RewriteEngine On | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*0n-line\.tv.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*100dollars-seo\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*12masterov\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*1pamm\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*4webmasters\.org.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*5forex\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*76brighton\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*7makemoneyonline\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*7zap\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*abovetherivernc\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*acads\.net.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*acunetix-referrer\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*adcash\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*addons\.mozilla\.org/en-US/firefox/addon/ilovevitaly.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*adelly\.bg.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*adf\.ly.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*adspart\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*adventureparkcostarica\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*adviceforum\.info.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*advokateg\.co.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*advokateg\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*advokateg\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*affordablewebsitesandmobileapps\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*afora\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*akuhni\.by.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*alessandraleone\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*alfa9\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*alibestsale\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*allknow\.info.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*allnews\.md.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*allwomen\.info.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*alpharma\.net.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*altermix\.ua.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*amanda-porn\.ga.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*amt-k\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*anapa-inns\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*android-style\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*anticrawler\.org.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*aosheng-tech\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*arendakvartir\.kz.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*arkkivoltti\.net.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*artparquet\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*aruplighting\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*audiobangout\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*autovideobroadcast\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*aviva-limoux\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*avkzarabotok\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*avkzarabotok\.info.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*azartclub\.org.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*bablonow\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*backgroundpictures\.net.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*baixar-musicas-gratis\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*baladur\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*balitouroffice\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*bard-real\.com\.ua.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*bbtec\.net.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*best-seo-offer\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*best-seo-software\.xyz.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*best-seo-solution\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*bestmobilityscooterstoday\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*bestwebsitesawards\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*bif-ru\.info.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*biglistofwebsites\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*billiard-classic\.com\.ua.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*bioca\.org.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*bizru\.info.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*bkns\.vn.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*black-friday\.ga.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*blackhatworth\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*blackle\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*blogtotal\.de.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*blue-square\.biz.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*bluerobot\.info.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*boleznikogi\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*bookmark4you\.biz.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*bookmark4you\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*brakehawk\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*break-the-chains\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*bristolhostel\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*bristolhotel\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*bristolhotel\.com\.ua.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*brk-rti\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*brothers-smaller\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*budmavtomatika\.com\.ua.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*burger-imperia\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*buttons-for-website\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*buttons-for-your-website\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*buy-cheap-online\.info.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*buy-forum\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*buyantiviralwp\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*buypharmacydrug\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*callejondelpozo\.es.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*cardiosport\.com\.ua.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*cartechnic\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*cbcseward\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*cenokos\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*cenoval\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*cezartabac\.ro.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*cherrypointplace\.ca.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*cherubinimobili\.it.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*chinese-amezon\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*ci\.ua.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*cityadspix\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*civilwartheater\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*clicksor\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*clmforexeu\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*coderstate\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*codysbbq\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*conciergegroup\.org.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*connectikastudio\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*constantaservice\.net.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*copyrightclaims\.org.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*covadhosting\.biz.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*cubook\.supernew\.org.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*customsua\.com\.ua.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*cyber-monday\.ga.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*dailyrank\.net.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*darodar\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*dbutton\.net.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*delfin-aqua\.com\.ua.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*demenageur\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*depositfiles-porn\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*descargar-musica-gratis\.net.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*detskie-konstruktory\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*dipstar\.org.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*djekxa\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*dojki-hd\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*domination\.ml.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*doska-vsem\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*dostavka-v-krym\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*drupa\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*dvr\.biz\.ua.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*e-buyeasy\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*e-kwiaciarz\.pl.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*ecomp3\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*econom\.co.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*edakgfvwql\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*edelstahlschornstein-123\.de.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*egovaleo\.it.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*ekto\.ee.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*elitesportsadvisor\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*elmifarhangi\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*embedle\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*erot\.co.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*escort-russian\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*este-line\.com\.ua.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*euromasterclass\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*europages\.com\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*eurosamodelki\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*event-tracking\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*extener\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*extremez\.net.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*family1st\.ca.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*fbdownloader\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*fbfreegifts\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*feedouble\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*feedouble\.net.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*filmetricsasia\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*fitness-video\.net.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*fiverr\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*floating-share-buttons\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*forex-procto\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*forsex\.info.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*forum69\.info.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*foxtechfpv\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*free-floating-buttons\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*free-share-buttons\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*free-social-buttons\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*freeseedsonline\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*freewhatsappload\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*fsalas\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*ftns\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*fungirlsgames\.net.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*funnypica\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*generalporn\.org.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*germes-trans\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*get-free-social-traffic\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*get-free-traffic-now\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*get-your-social-buttons\.info.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*girlporn\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*gkvector\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*glavprofit\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*gobongo\.info.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*goodprotein\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*googlsucks\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*gototal\.co\.nz.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*guardlink\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*guardlink\.org.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*h2monline\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*handicapvantoday\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*hazardky\.net.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*hol\.es.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*hongfanji\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*hostcritique\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*hosting-tracker\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*hostingclub\.lk.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*houseofrose\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*howopen\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*howtostopreferralspam\.eu.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*hulfingtonpost\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*humanorightswatch\.org.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*hundejo\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*hvd-store\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*ico\.re.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*igru-xbox\.net.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*iloveitaly\.ro.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*iloveitaly\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*ilovevitaly\.co.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*ilovevitaly\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*ilovevitaly\.info.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*ilovevitaly\.org.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*ilovevitaly\.ro.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*ilovevitaly\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*iminent\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*imperiafilm\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*inboxdollars\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*intermesh\.net.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*investpamm\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*invivo\.hu.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*iskalko\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*ispaniya-costa-blanca\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*istanbulit\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*it-max\.com\.ua.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*itronics\.ca.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*itsdp3\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*jasonpartington\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*jjbabskoe\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*joinandplay\.me.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*joingames\.org.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*justprofit\.xyz.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*jwss\.cc.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*kabbalah-red-bracelets\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*kambasoft\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*kazrent\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*kino-fun\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*kino-key\.info.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*kinopolet\.net.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*knigonosha\.net.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*konkursov\.net.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*kosova\.de.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*laxdrills\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*leadwayau\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*littleberry\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*livefixer\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*lmrauction\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*lol-smurfs\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*lombia\.co.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*lombia\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*lumb\.co.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*luxup\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*m1media\.net.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*mainlinehobby\.net.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*makemoneyonline\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*malls\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*manualterap\.roleforum\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*maridan\.com\.au.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*masterseek\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*maxthon\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*mebelcomplekt\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*mebeldekor\.com\.au.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*med-zdorovie\.com\.au.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*medi-fitt\.hu.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*medicovi\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*medispainstitute\.com\.au.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*meendo-free-traffic\.ga.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*mericanmopedstore\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*micasainvest\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*microsearch\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*minegam\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*mini\.7zap\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*mir-betting\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*mirobuvi\.com\.au.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*mirtorrent\.net.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*mobilemedia\.md.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*motion-interactive\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*mountainstream\.ms.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*moyakuhnia\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*mpftpupload\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*mrmoneymustache\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*msk\.afora\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*muscle-factory\.com\.au.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*musicas\.baixar-musicas-gratis\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*musicprojectfoundation\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*myprintscreen\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*nate\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*niki-mlt\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*notaria-desalas\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*noumeda\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*novosti-hi-tech\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*o-o-6-o-o\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*o-o-6-o-o\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*o-o-8-o-o\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*o-o-8-o-o\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*offers\.bycontext\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*online-hit\.info.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*onlywoman\.org.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*ooo-olni\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*openfrost\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*openmediasoft\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*osoznanie-narkotikam\.net.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*ozas\.net.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*palvira\.com\.au.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*paparazzistudios\.com\.au.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*petrovka-online\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*photokitchendesign\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*pizza-imperia\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*pizza-tycoon\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*pochemychka\.net.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*poisk-zakona\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*pornhub-forum\.ga.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*pornhub-forum\.uni\.me.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*pornhub-ru\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*pornoforadult\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*portnoff\.od\.au.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*powitania\.pl.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*pozdravleniya-c\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*priceg\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*pricheski-video\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*princeadvantagesales\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*prlog\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*producm\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*prodvigator\.au.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*prohoster\.info.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*prointer\.net\.au.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*promoforum\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*psa48\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*putitin\.me.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*pyrodesigns\.com\.au.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*qualitymarketzone\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*qwesa\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*rankings-analytics\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*ranksonic\.info.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*ranksonic\.org.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*rapidgator-porn\.ga.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*rcb101\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*realting-moscow\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*rednise\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*rentalmaty\.kz.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*research\.ifmo\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*resellerclub\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*retreatia\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*reversing\.cc.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*rightenergysolutions\.com\.au.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*rospromtest\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*sady-urala\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*salutmontreal\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*sanjosestartups\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*savetubevideo\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*screentoolkit\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*search-error\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*semalt\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*semaltmedia\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*seo-platform\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*seo-smm\.kz.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*seoanalyses\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*seoexperimenty\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*seokicks\.de.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*seopub\.net.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*setioweb\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*sexyali\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*sharebutton\.net.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*sharebutton\.to.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*shop\.xz618\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*sibecoprom\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*simple-share-buttons\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*siteripz\.net.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*sitevaluation\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*sitevaluation\.org.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*sklad-24\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*sledstvie-veli\.net.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*slftsdybbg\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*slkrm\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*smailik\.org.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*snip\.to.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*soaksoak\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*social-buttons\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*socialseet\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*softomix\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*softomix\.net.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*softomix\.org.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*softomix\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*sohoindia\.net.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*solnplast\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*sonyelektronik\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*sosdepotdebilan\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*soundfrost\.org.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*spb\.afora\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*spravka130\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*srecorder\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*steame\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*streha-metalko\.si.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*success-seo\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*superiends\.org.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*susanholtphotography\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*taihouse\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*tastyfoodideas\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*tattooha\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*teastory\.co.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*tedxrj\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*thecoral\.com\.br.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*theguardlan\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*thepokertimer\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*tomck\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*torture\.ml.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*touchmods\.fr.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*traffic2money\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*trafficmonetize\.org.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*trafficmonetizer\.org.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*trion\.od\.au.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*twincitiescarservice\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*uasb\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*uni\.me.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*urlopener\.blogspot\.com\.au.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*uzungil\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*vapmedia\.org.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*video--production\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*video-woman\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*videofrost\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*videofrost\.net.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*videos-for-your-business\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*viel\.su.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*viktoria-center\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*vodaodessa\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*vodkoved\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*web-betting\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*webmaster-traffic\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*webmonetizer\.net.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*website-errors-scanner\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*websites-reviews\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*websocial\.me.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*williamrobsonproperty\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*wmasterlead\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*wordpress-crew\.net.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*xn--80adgcaax6acohn6r\.xn--p1ai.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*xn--c1acygb\.xn--p1ai.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*xn--q1a\.xn--b1aube0e\.xn--c1acygb\.xn--p1ai.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*ykecwqlixx\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*youporn-forum\.ga.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*youporn-forum\.uni\.me.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*youporn-ru\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*yourserverisdown\.com.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*youtubedownload\.org.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*yurgorod\.ru.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*zastroyka\.org.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*zazagames\.org.*$ [NC,OR] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*zverokruh-shop\.cz.*$ [NC] | |
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*semrush\.com.*$ [NC] | |
RewriteRule ^(.*)$ – [F,L] | |
</IfModule> | |
<IfModule mod_setenvif.c> | |
SetEnvIfNoCase Referer 0n-line.tv spambot=yes | |
SetEnvIfNoCase Referer 100dollars-seo.com spambot=yes | |
SetEnvIfNoCase Referer 12masterov.com spambot=yes | |
SetEnvIfNoCase Referer 1pamm.ru spambot=yes | |
SetEnvIfNoCase Referer 4webmasters.org spambot=yes | |
SetEnvIfNoCase Referer 5forex.ru spambot=yes | |
SetEnvIfNoCase Referer 76brighton.com spambot=yes | |
SetEnvIfNoCase Referer 7makemoneyonline.com spambot=yes | |
SetEnvIfNoCase Referer 7zap.com spambot=yes | |
SetEnvIfNoCase Referer abovetherivernc.com spambot=yes | |
SetEnvIfNoCase Referer acads.net spambot=yes | |
SetEnvIfNoCase Referer acunetix-referrer.com spambot=yes | |
SetEnvIfNoCase Referer adcash.com spambot=yes | |
SetEnvIfNoCase Referer addons.mozilla.org/en-US/firefox/addon/ilovevitaly spambot=yes | |
SetEnvIfNoCase Referer adelly.bg spambot=yes | |
SetEnvIfNoCase Referer adf.ly spambot=yes | |
SetEnvIfNoCase Referer adspart.com spambot=yes | |
SetEnvIfNoCase Referer adventureparkcostarica.com spambot=yes | |
SetEnvIfNoCase Referer adviceforum.info spambot=yes | |
SetEnvIfNoCase Referer advokateg.co spambot=yes | |
SetEnvIfNoCase Referer advokateg.com spambot=yes | |
SetEnvIfNoCase Referer advokateg.ru spambot=yes | |
SetEnvIfNoCase Referer affordablewebsitesandmobileapps.com spambot=yes | |
SetEnvIfNoCase Referer afora.ru spambot=yes | |
SetEnvIfNoCase Referer akuhni.by spambot=yes | |
SetEnvIfNoCase Referer alessandraleone.com spambot=yes | |
SetEnvIfNoCase Referer alfa9.com spambot=yes | |
SetEnvIfNoCase Referer alibestsale.com spambot=yes | |
SetEnvIfNoCase Referer allknow.info spambot=yes | |
SetEnvIfNoCase Referer allnews.md spambot=yes | |
SetEnvIfNoCase Referer allwomen.info spambot=yes | |
SetEnvIfNoCase Referer alpharma.net spambot=yes | |
SetEnvIfNoCase Referer altermix.ua spambot=yes | |
SetEnvIfNoCase Referer amanda-porn.ga spambot=yes | |
SetEnvIfNoCase Referer amt-k.ru spambot=yes | |
SetEnvIfNoCase Referer anapa-inns.ru spambot=yes | |
SetEnvIfNoCase Referer android-style.com spambot=yes | |
SetEnvIfNoCase Referer anticrawler.org spambot=yes | |
SetEnvIfNoCase Referer aosheng-tech.com spambot=yes | |
SetEnvIfNoCase Referer arendakvartir.kz spambot=yes | |
SetEnvIfNoCase Referer arkkivoltti.net spambot=yes | |
SetEnvIfNoCase Referer artparquet.ru spambot=yes | |
SetEnvIfNoCase Referer aruplighting.com spambot=yes | |
SetEnvIfNoCase Referer audiobangout.com spambot=yes | |
SetEnvIfNoCase Referer autovideobroadcast.com spambot=yes | |
SetEnvIfNoCase Referer aviva-limoux.com spambot=yes | |
SetEnvIfNoCase Referer avkzarabotok.com spambot=yes | |
SetEnvIfNoCase Referer avkzarabotok.info spambot=yes | |
SetEnvIfNoCase Referer azartclub.org spambot=yes | |
SetEnvIfNoCase Referer bablonow.ru spambot=yes | |
SetEnvIfNoCase Referer backgroundpictures.net spambot=yes | |
SetEnvIfNoCase Referer baixar-musicas-gratis.com spambot=yes | |
SetEnvIfNoCase Referer baladur.ru spambot=yes | |
SetEnvIfNoCase Referer balitouroffice.com spambot=yes | |
SetEnvIfNoCase Referer bard-real.com.ua spambot=yes | |
SetEnvIfNoCase Referer bbtec.net spambot=yes | |
SetEnvIfNoCase Referer best-seo-offer.com spambot=yes | |
SetEnvIfNoCase Referer best-seo-software.xyz spambot=yes | |
SetEnvIfNoCase Referer best-seo-solution.com spambot=yes | |
SetEnvIfNoCase Referer bestmobilityscooterstoday.com spambot=yes | |
SetEnvIfNoCase Referer bestwebsitesawards.com spambot=yes | |
SetEnvIfNoCase Referer bif-ru.info spambot=yes | |
SetEnvIfNoCase Referer biglistofwebsites.com spambot=yes | |
SetEnvIfNoCase Referer billiard-classic.com.ua spambot=yes | |
SetEnvIfNoCase Referer bioca.org spambot=yes | |
SetEnvIfNoCase Referer bizru.info spambot=yes | |
SetEnvIfNoCase Referer bkns.vn spambot=yes | |
SetEnvIfNoCase Referer black-friday.ga spambot=yes | |
SetEnvIfNoCase Referer blackhatworth.com spambot=yes | |
SetEnvIfNoCase Referer blackle.com spambot=yes | |
SetEnvIfNoCase Referer blogtotal.de spambot=yes | |
SetEnvIfNoCase Referer blue-square.biz spambot=yes | |
SetEnvIfNoCase Referer bluerobot.info spambot=yes | |
SetEnvIfNoCase Referer boleznikogi.com spambot=yes | |
SetEnvIfNoCase Referer bookmark4you.biz spambot=yes | |
SetEnvIfNoCase Referer bookmark4you.com spambot=yes | |
SetEnvIfNoCase Referer brakehawk.com spambot=yes | |
SetEnvIfNoCase Referer break-the-chains.com spambot=yes | |
SetEnvIfNoCase Referer bristolhostel.com spambot=yes | |
SetEnvIfNoCase Referer bristolhotel.com spambot=yes | |
SetEnvIfNoCase Referer bristolhotel.com.ua spambot=yes | |
SetEnvIfNoCase Referer brk-rti.ru spambot=yes | |
SetEnvIfNoCase Referer brothers-smaller.ru spambot=yes | |
SetEnvIfNoCase Referer budmavtomatika.com.ua spambot=yes | |
SetEnvIfNoCase Referer burger-imperia.com spambot=yes | |
SetEnvIfNoCase Referer buttons-for-website.com spambot=yes | |
SetEnvIfNoCase Referer buttons-for-your-website.com spambot=yes | |
SetEnvIfNoCase Referer buy-cheap-online.info spambot=yes | |
SetEnvIfNoCase Referer buy-forum.ru spambot=yes | |
SetEnvIfNoCase Referer buyantiviralwp.com spambot=yes | |
SetEnvIfNoCase Referer buypharmacydrug.com spambot=yes | |
SetEnvIfNoCase Referer callejondelpozo.es spambot=yes | |
SetEnvIfNoCase Referer cardiosport.com.ua spambot=yes | |
SetEnvIfNoCase Referer cartechnic.ru spambot=yes | |
SetEnvIfNoCase Referer cbcseward.com spambot=yes | |
SetEnvIfNoCase Referer cenokos.ru spambot=yes | |
SetEnvIfNoCase Referer cenoval.ru spambot=yes | |
SetEnvIfNoCase Referer cezartabac.ro spambot=yes | |
SetEnvIfNoCase Referer cherrypointplace.ca spambot=yes | |
SetEnvIfNoCase Referer cherubinimobili.it spambot=yes | |
SetEnvIfNoCase Referer chinese-amezon.com spambot=yes | |
SetEnvIfNoCase Referer ci.ua spambot=yes | |
SetEnvIfNoCase Referer cityadspix.com spambot=yes | |
SetEnvIfNoCase Referer civilwartheater.com spambot=yes | |
SetEnvIfNoCase Referer clicksor.com spambot=yes | |
SetEnvIfNoCase Referer clmforexeu.com spambot=yes | |
SetEnvIfNoCase Referer coderstate.com spambot=yes | |
SetEnvIfNoCase Referer codysbbq.com spambot=yes | |
SetEnvIfNoCase Referer conciergegroup.org spambot=yes | |
SetEnvIfNoCase Referer connectikastudio.com spambot=yes | |
SetEnvIfNoCase Referer constantaservice.net spambot=yes | |
SetEnvIfNoCase Referer copyrightclaims.org spambot=yes | |
SetEnvIfNoCase Referer covadhosting.biz spambot=yes | |
SetEnvIfNoCase Referer cubook.supernew.org spambot=yes | |
SetEnvIfNoCase Referer customsua.com.ua spambot=yes | |
SetEnvIfNoCase Referer cyber-monday.ga spambot=yes | |
SetEnvIfNoCase Referer dailyrank.net spambot=yes | |
SetEnvIfNoCase Referer darodar.com spambot=yes | |
SetEnvIfNoCase Referer dbutton.net spambot=yes | |
SetEnvIfNoCase Referer delfin-aqua.com.ua spambot=yes | |
SetEnvIfNoCase Referer demenageur.com spambot=yes | |
SetEnvIfNoCase Referer depositfiles-porn.com spambot=yes | |
SetEnvIfNoCase Referer descargar-musica-gratis.net spambot=yes | |
SetEnvIfNoCase Referer detskie-konstruktory.ru spambot=yes | |
SetEnvIfNoCase Referer dipstar.org spambot=yes | |
SetEnvIfNoCase Referer djekxa.ru spambot=yes | |
SetEnvIfNoCase Referer dojki-hd.com spambot=yes | |
SetEnvIfNoCase Referer domination.ml spambot=yes | |
SetEnvIfNoCase Referer doska-vsem.ru spambot=yes | |
SetEnvIfNoCase Referer dostavka-v-krym.com spambot=yes | |
SetEnvIfNoCase Referer drupa.com spambot=yes | |
SetEnvIfNoCase Referer dvr.biz.ua spambot=yes | |
SetEnvIfNoCase Referer e-buyeasy.com spambot=yes | |
SetEnvIfNoCase Referer e-kwiaciarz.pl spambot=yes | |
SetEnvIfNoCase Referer ecomp3.ru spambot=yes | |
SetEnvIfNoCase Referer econom.co spambot=yes | |
SetEnvIfNoCase Referer edakgfvwql.ru spambot=yes | |
SetEnvIfNoCase Referer edelstahlschornstein-123.de spambot=yes | |
SetEnvIfNoCase Referer egovaleo.it spambot=yes | |
SetEnvIfNoCase Referer ekto.ee spambot=yes | |
SetEnvIfNoCase Referer elitesportsadvisor.com spambot=yes | |
SetEnvIfNoCase Referer elmifarhangi.com spambot=yes | |
SetEnvIfNoCase Referer embedle.com spambot=yes | |
SetEnvIfNoCase Referer erot.co spambot=yes | |
SetEnvIfNoCase Referer escort-russian.com spambot=yes | |
SetEnvIfNoCase Referer este-line.com.ua spambot=yes | |
SetEnvIfNoCase Referer euromasterclass.ru spambot=yes | |
SetEnvIfNoCase Referer europages.com.ru spambot=yes | |
SetEnvIfNoCase Referer eurosamodelki.ru spambot=yes | |
SetEnvIfNoCase Referer event-tracking.com spambot=yes | |
SetEnvIfNoCase Referer extener.com spambot=yes | |
SetEnvIfNoCase Referer extremez.net spambot=yes | |
SetEnvIfNoCase Referer family1st.ca spambot=yes | |
SetEnvIfNoCase Referer fbdownloader.com spambot=yes | |
SetEnvIfNoCase Referer fbfreegifts.com spambot=yes | |
SetEnvIfNoCase Referer feedouble.com spambot=yes | |
SetEnvIfNoCase Referer feedouble.net spambot=yes | |
SetEnvIfNoCase Referer filmetricsasia.com spambot=yes | |
SetEnvIfNoCase Referer fitness-video.net spambot=yes | |
SetEnvIfNoCase Referer fiverr.com spambot=yes | |
SetEnvIfNoCase Referer floating-share-buttons.com spambot=yes | |
SetEnvIfNoCase Referer forex-procto.ru spambot=yes | |
SetEnvIfNoCase Referer forsex.info spambot=yes | |
SetEnvIfNoCase Referer forum69.info spambot=yes | |
SetEnvIfNoCase Referer foxtechfpv.com spambot=yes | |
SetEnvIfNoCase Referer free-floating-buttons.com spambot=yes | |
SetEnvIfNoCase Referer free-share-buttons.com spambot=yes | |
SetEnvIfNoCase Referer free-social-buttons.com spambot=yes | |
SetEnvIfNoCase Referer freeseedsonline.com spambot=yes | |
SetEnvIfNoCase Referer freewhatsappload.com spambot=yes | |
SetEnvIfNoCase Referer fsalas.com spambot=yes | |
SetEnvIfNoCase Referer ftns.ru spambot=yes | |
SetEnvIfNoCase Referer fungirlsgames.net spambot=yes | |
SetEnvIfNoCase Referer funnypica.com spambot=yes | |
SetEnvIfNoCase Referer generalporn.org spambot=yes | |
SetEnvIfNoCase Referer germes-trans.com spambot=yes | |
SetEnvIfNoCase Referer get-free-social-traffic.com spambot=yes | |
SetEnvIfNoCase Referer get-free-traffic-now.com spambot=yes | |
SetEnvIfNoCase Referer get-your-social-buttons.info spambot=yes | |
SetEnvIfNoCase Referer girlporn.ru spambot=yes | |
SetEnvIfNoCase Referer gkvector.ru spambot=yes | |
SetEnvIfNoCase Referer glavprofit.ru spambot=yes | |
SetEnvIfNoCase Referer gobongo.info spambot=yes | |
SetEnvIfNoCase Referer goodprotein.ru spambot=yes | |
SetEnvIfNoCase Referer googlsucks.com spambot=yes | |
SetEnvIfNoCase Referer gototal.co.nz spambot=yes | |
SetEnvIfNoCase Referer guardlink.com spambot=yes | |
SetEnvIfNoCase Referer guardlink.org spambot=yes | |
SetEnvIfNoCase Referer h2monline.com spambot=yes | |
SetEnvIfNoCase Referer handicapvantoday.com spambot=yes | |
SetEnvIfNoCase Referer hazardky.net spambot=yes | |
SetEnvIfNoCase Referer hol.es spambot=yes | |
SetEnvIfNoCase Referer hongfanji.com spambot=yes | |
SetEnvIfNoCase Referer hostcritique.com spambot=yes | |
SetEnvIfNoCase Referer hosting-tracker.com spambot=yes | |
SetEnvIfNoCase Referer hostingclub.lk spambot=yes | |
SetEnvIfNoCase Referer houseofrose.com spambot=yes | |
SetEnvIfNoCase Referer howopen.ru spambot=yes | |
SetEnvIfNoCase Referer howtostopreferralspam.eu spambot=yes | |
SetEnvIfNoCase Referer hulfingtonpost.com spambot=yes | |
SetEnvIfNoCase Referer humanorightswatch.org spambot=yes | |
SetEnvIfNoCase Referer hundejo.com spambot=yes | |
SetEnvIfNoCase Referer hvd-store.com spambot=yes | |
SetEnvIfNoCase Referer ico.re spambot=yes | |
SetEnvIfNoCase Referer igru-xbox.net spambot=yes | |
SetEnvIfNoCase Referer iloveitaly.ro spambot=yes | |
SetEnvIfNoCase Referer iloveitaly.ru spambot=yes | |
SetEnvIfNoCase Referer ilovevitaly.co spambot=yes | |
SetEnvIfNoCase Referer ilovevitaly.com spambot=yes | |
SetEnvIfNoCase Referer ilovevitaly.info spambot=yes | |
SetEnvIfNoCase Referer ilovevitaly.org spambot=yes | |
SetEnvIfNoCase Referer ilovevitaly.ro spambot=yes | |
SetEnvIfNoCase Referer ilovevitaly.ru spambot=yes | |
SetEnvIfNoCase Referer iminent.com spambot=yes | |
SetEnvIfNoCase Referer imperiafilm.ru spambot=yes | |
SetEnvIfNoCase Referer inboxdollars.com spambot=yes | |
SetEnvIfNoCase Referer intermesh.net spambot=yes | |
SetEnvIfNoCase Referer investpamm.ru spambot=yes | |
SetEnvIfNoCase Referer invivo.hu spambot=yes | |
SetEnvIfNoCase Referer iskalko.ru spambot=yes | |
SetEnvIfNoCase Referer ispaniya-costa-blanca.ru spambot=yes | |
SetEnvIfNoCase Referer istanbulit.com spambot=yes | |
SetEnvIfNoCase Referer it-max.com.ua spambot=yes | |
SetEnvIfNoCase Referer itronics.ca spambot=yes | |
SetEnvIfNoCase Referer itsdp3.com spambot=yes | |
SetEnvIfNoCase Referer jasonpartington.com spambot=yes | |
SetEnvIfNoCase Referer jjbabskoe.ru spambot=yes | |
SetEnvIfNoCase Referer joinandplay.me spambot=yes | |
SetEnvIfNoCase Referer joingames.org spambot=yes | |
SetEnvIfNoCase Referer justprofit.xyz spambot=yes | |
SetEnvIfNoCase Referer jwss.cc spambot=yes | |
SetEnvIfNoCase Referer kabbalah-red-bracelets.com spambot=yes | |
SetEnvIfNoCase Referer kambasoft.com spambot=yes | |
SetEnvIfNoCase Referer kazrent.com spambot=yes | |
SetEnvIfNoCase Referer kino-fun.ru spambot=yes | |
SetEnvIfNoCase Referer kino-key.info spambot=yes | |
SetEnvIfNoCase Referer kinopolet.net spambot=yes | |
SetEnvIfNoCase Referer knigonosha.net spambot=yes | |
SetEnvIfNoCase Referer konkursov.net spambot=yes | |
SetEnvIfNoCase Referer kosova.de spambot=yes | |
SetEnvIfNoCase Referer laxdrills.com spambot=yes | |
SetEnvIfNoCase Referer leadwayau.com spambot=yes | |
SetEnvIfNoCase Referer littleberry.ru spambot=yes | |
SetEnvIfNoCase Referer livefixer.com spambot=yes | |
SetEnvIfNoCase Referer lmrauction.com spambot=yes | |
SetEnvIfNoCase Referer lol-smurfs.com spambot=yes | |
SetEnvIfNoCase Referer lombia.co spambot=yes | |
SetEnvIfNoCase Referer lombia.com spambot=yes | |
SetEnvIfNoCase Referer lumb.co spambot=yes | |
SetEnvIfNoCase Referer luxup.ru spambot=yes | |
SetEnvIfNoCase Referer m1media.net spambot=yes | |
SetEnvIfNoCase Referer mainlinehobby.net spambot=yes | |
SetEnvIfNoCase Referer makemoneyonline.com spambot=yes | |
SetEnvIfNoCase Referer malls.com spambot=yes | |
SetEnvIfNoCase Referer manualterap.roleforum.ru spambot=yes | |
SetEnvIfNoCase Referer maridan.com.au spambot=yes | |
SetEnvIfNoCase Referer masterseek.com spambot=yes | |
SetEnvIfNoCase Referer maxthon.com spambot=yes | |
SetEnvIfNoCase Referer mebelcomplekt.ru spambot=yes | |
SetEnvIfNoCase Referer mebeldekor.com.au spambot=yes | |
SetEnvIfNoCase Referer med-zdorovie.com.au spambot=yes | |
SetEnvIfNoCase Referer medi-fitt.hu spambot=yes | |
SetEnvIfNoCase Referer medicovi.com spambot=yes | |
SetEnvIfNoCase Referer medispainstitute.com.au spambot=yes | |
SetEnvIfNoCase Referer meendo-free-traffic.ga spambot=yes | |
SetEnvIfNoCase Referer mericanmopedstore.com spambot=yes | |
SetEnvIfNoCase Referer micasainvest.com spambot=yes | |
SetEnvIfNoCase Referer microsearch.ru spambot=yes | |
SetEnvIfNoCase Referer minegam.com spambot=yes | |
SetEnvIfNoCase Referer mini.7zap.com spambot=yes | |
SetEnvIfNoCase Referer mir-betting.ru spambot=yes | |
SetEnvIfNoCase Referer mirobuvi.com.au spambot=yes | |
SetEnvIfNoCase Referer mirtorrent.net spambot=yes | |
SetEnvIfNoCase Referer mobilemedia.md spambot=yes | |
SetEnvIfNoCase Referer motion-interactive.com spambot=yes | |
SetEnvIfNoCase Referer mountainstream.ms spambot=yes | |
SetEnvIfNoCase Referer moyakuhnia.ru spambot=yes | |
SetEnvIfNoCase Referer mpftpupload.com spambot=yes | |
SetEnvIfNoCase Referer mrmoneymustache.com spambot=yes | |
SetEnvIfNoCase Referer msk.afora.ru spambot=yes | |
SetEnvIfNoCase Referer muscle-factory.com.au spambot=yes | |
SetEnvIfNoCase Referer musicas.baixar-musicas-gratis.com spambot=yes | |
SetEnvIfNoCase Referer musicprojectfoundation.com spambot=yes | |
SetEnvIfNoCase Referer myprintscreen.com spambot=yes | |
SetEnvIfNoCase Referer nate.com spambot=yes | |
SetEnvIfNoCase Referer niki-mlt.ru spambot=yes | |
SetEnvIfNoCase Referer notaria-desalas.com spambot=yes | |
SetEnvIfNoCase Referer noumeda.com spambot=yes | |
SetEnvIfNoCase Referer novosti-hi-tech.ru spambot=yes | |
SetEnvIfNoCase Referer o-o-6-o-o.com spambot=yes | |
SetEnvIfNoCase Referer o-o-6-o-o.ru spambot=yes | |
SetEnvIfNoCase Referer o-o-8-o-o.com spambot=yes | |
SetEnvIfNoCase Referer o-o-8-o-o.ru spambot=yes | |
SetEnvIfNoCase Referer offers.bycontext.com spambot=yes | |
SetEnvIfNoCase Referer online-hit.info spambot=yes | |
SetEnvIfNoCase Referer onlywoman.org spambot=yes | |
SetEnvIfNoCase Referer ooo-olni.ru spambot=yes | |
SetEnvIfNoCase Referer openfrost.com spambot=yes | |
SetEnvIfNoCase Referer openmediasoft.com spambot=yes | |
SetEnvIfNoCase Referer osoznanie-narkotikam.net spambot=yes | |
SetEnvIfNoCase Referer ozas.net spambot=yes | |
SetEnvIfNoCase Referer palvira.com.au spambot=yes | |
SetEnvIfNoCase Referer paparazzistudios.com.au spambot=yes | |
SetEnvIfNoCase Referer petrovka-online.com spambot=yes | |
SetEnvIfNoCase Referer photokitchendesign.com spambot=yes | |
SetEnvIfNoCase Referer pizza-imperia.com spambot=yes | |
SetEnvIfNoCase Referer pizza-tycoon.com spambot=yes | |
SetEnvIfNoCase Referer pochemychka.net spambot=yes | |
SetEnvIfNoCase Referer poisk-zakona.ru spambot=yes | |
SetEnvIfNoCase Referer pornhub-forum.ga spambot=yes | |
SetEnvIfNoCase Referer pornhub-forum.uni.me spambot=yes | |
SetEnvIfNoCase Referer pornhub-ru.com spambot=yes | |
SetEnvIfNoCase Referer pornoforadult.com spambot=yes | |
SetEnvIfNoCase Referer portnoff.od.au spambot=yes | |
SetEnvIfNoCase Referer powitania.pl spambot=yes | |
SetEnvIfNoCase Referer pozdravleniya-c.ru spambot=yes | |
SetEnvIfNoCase Referer priceg.com spambot=yes | |
SetEnvIfNoCase Referer pricheski-video.com spambot=yes | |
SetEnvIfNoCase Referer princeadvantagesales.com spambot=yes | |
SetEnvIfNoCase Referer prlog.ru spambot=yes | |
SetEnvIfNoCase Referer producm.ru spambot=yes | |
SetEnvIfNoCase Referer prodvigator.au spambot=yes | |
SetEnvIfNoCase Referer prohoster.info spambot=yes | |
SetEnvIfNoCase Referer prointer.net.au spambot=yes | |
SetEnvIfNoCase Referer promoforum.ru spambot=yes | |
SetEnvIfNoCase Referer psa48.ru spambot=yes | |
SetEnvIfNoCase Referer putitin.me spambot=yes | |
SetEnvIfNoCase Referer pyrodesigns.com.au spambot=yes | |
SetEnvIfNoCase Referer qualitymarketzone.com spambot=yes | |
SetEnvIfNoCase Referer qwesa.ru spambot=yes | |
SetEnvIfNoCase Referer rankings-analytics.com spambot=yes | |
SetEnvIfNoCase Referer ranksonic.info spambot=yes | |
SetEnvIfNoCase Referer ranksonic.org spambot=yes | |
SetEnvIfNoCase Referer rapidgator-porn.ga spambot=yes | |
SetEnvIfNoCase Referer rcb101.ru spambot=yes | |
SetEnvIfNoCase Referer realting-moscow.ru spambot=yes | |
SetEnvIfNoCase Referer rednise.com spambot=yes | |
SetEnvIfNoCase Referer rentalmaty.kz spambot=yes | |
SetEnvIfNoCase Referer research.ifmo.ru spambot=yes | |
SetEnvIfNoCase Referer resellerclub.com spambot=yes | |
SetEnvIfNoCase Referer retreatia.com spambot=yes | |
SetEnvIfNoCase Referer reversing.cc spambot=yes | |
SetEnvIfNoCase Referer rightenergysolutions.com.au spambot=yes | |
SetEnvIfNoCase Referer rospromtest.ru spambot=yes | |
SetEnvIfNoCase Referer sady-urala.ru spambot=yes | |
SetEnvIfNoCase Referer salutmontreal.com spambot=yes | |
SetEnvIfNoCase Referer sanjosestartups.com spambot=yes | |
SetEnvIfNoCase Referer savetubevideo.com spambot=yes | |
SetEnvIfNoCase Referer screentoolkit.com spambot=yes | |
SetEnvIfNoCase Referer search-error.com spambot=yes | |
SetEnvIfNoCase Referer semalt.com spambot=yes | |
SetEnvIfNoCase Referer semaltmedia.com spambot=yes | |
SetEnvIfNoCase Referer seo-platform.com spambot=yes | |
SetEnvIfNoCase Referer seo-smm.kz spambot=yes | |
SetEnvIfNoCase Referer seoanalyses.com spambot=yes | |
SetEnvIfNoCase Referer seoexperimenty.ru spambot=yes | |
SetEnvIfNoCase Referer seokicks.de spambot=yes | |
SetEnvIfNoCase Referer seopub.net spambot=yes | |
SetEnvIfNoCase Referer setioweb.com spambot=yes | |
SetEnvIfNoCase Referer sexyali.com spambot=yes | |
SetEnvIfNoCase Referer sharebutton.net spambot=yes | |
SetEnvIfNoCase Referer sharebutton.to spambot=yes | |
SetEnvIfNoCase Referer shop.xz618.com spambot=yes | |
SetEnvIfNoCase Referer sibecoprom.ru spambot=yes | |
SetEnvIfNoCase Referer simple-share-buttons.com spambot=yes | |
SetEnvIfNoCase Referer siteripz.net spambot=yes | |
SetEnvIfNoCase Referer sitevaluation.com spambot=yes | |
SetEnvIfNoCase Referer sitevaluation.org spambot=yes | |
SetEnvIfNoCase Referer sklad-24.ru spambot=yes | |
SetEnvIfNoCase Referer sledstvie-veli.net spambot=yes | |
SetEnvIfNoCase Referer slftsdybbg.ru spambot=yes | |
SetEnvIfNoCase Referer slkrm.ru spambot=yes | |
SetEnvIfNoCase Referer smailik.org spambot=yes | |
SetEnvIfNoCase Referer snip.to spambot=yes | |
SetEnvIfNoCase Referer soaksoak.ru spambot=yes | |
SetEnvIfNoCase Referer social-buttons.com spambot=yes | |
SetEnvIfNoCase Referer socialseet.ru spambot=yes | |
SetEnvIfNoCase Referer softomix.com spambot=yes | |
SetEnvIfNoCase Referer softomix.net spambot=yes | |
SetEnvIfNoCase Referer softomix.org spambot=yes | |
SetEnvIfNoCase Referer softomix.ru spambot=yes | |
SetEnvIfNoCase Referer sohoindia.net spambot=yes | |
SetEnvIfNoCase Referer solnplast.ru spambot=yes | |
SetEnvIfNoCase Referer sonyelektronik.com spambot=yes | |
SetEnvIfNoCase Referer sosdepotdebilan.com spambot=yes | |
SetEnvIfNoCase Referer soundfrost.org spambot=yes | |
SetEnvIfNoCase Referer spb.afora.ru spambot=yes | |
SetEnvIfNoCase Referer spravka130.ru spambot=yes | |
SetEnvIfNoCase Referer srecorder.com spambot=yes | |
SetEnvIfNoCase Referer steame.ru spambot=yes | |
SetEnvIfNoCase Referer streha-metalko.si spambot=yes | |
SetEnvIfNoCase Referer success-seo.com spambot=yes | |
SetEnvIfNoCase Referer superiends.org spambot=yes | |
SetEnvIfNoCase Referer susanholtphotography.com spambot=yes | |
SetEnvIfNoCase Referer taihouse.ru spambot=yes | |
SetEnvIfNoCase Referer tastyfoodideas.com spambot=yes | |
SetEnvIfNoCase Referer tattooha.com spambot=yes | |
SetEnvIfNoCase Referer teastory.co spambot=yes | |
SetEnvIfNoCase Referer tedxrj.com spambot=yes | |
SetEnvIfNoCase Referer thecoral.com.br spambot=yes | |
SetEnvIfNoCase Referer theguardlan.com spambot=yes | |
SetEnvIfNoCase Referer thepokertimer.com spambot=yes | |
SetEnvIfNoCase Referer tomck.com spambot=yes | |
SetEnvIfNoCase Referer torture.ml spambot=yes | |
SetEnvIfNoCase Referer touchmods.fr spambot=yes | |
SetEnvIfNoCase Referer traffic2money.com spambot=yes | |
SetEnvIfNoCase Referer trafficmonetize.org spambot=yes | |
SetEnvIfNoCase Referer trafficmonetizer.org spambot=yes | |
SetEnvIfNoCase Referer trion.od.au spambot=yes | |
SetEnvIfNoCase Referer twincitiescarservice.com spambot=yes | |
SetEnvIfNoCase Referer uasb.ru spambot=yes | |
SetEnvIfNoCase Referer uni.me spambot=yes | |
SetEnvIfNoCase Referer urlopener.blogspot.com.au spambot=yes | |
SetEnvIfNoCase Referer uzungil.com spambot=yes | |
SetEnvIfNoCase Referer vapmedia.org spambot=yes | |
SetEnvIfNoCase Referer video--production.com spambot=yes | |
SetEnvIfNoCase Referer video-woman.com spambot=yes | |
SetEnvIfNoCase Referer videofrost.com spambot=yes | |
SetEnvIfNoCase Referer videofrost.net spambot=yes | |
SetEnvIfNoCase Referer videos-for-your-business.com spambot=yes | |
SetEnvIfNoCase Referer viel.su spambot=yes | |
SetEnvIfNoCase Referer viktoria-center.ru spambot=yes | |
SetEnvIfNoCase Referer vodaodessa.com spambot=yes | |
SetEnvIfNoCase Referer vodkoved.ru spambot=yes | |
SetEnvIfNoCase Referer web-betting.ru spambot=yes | |
SetEnvIfNoCase Referer webmaster-traffic.com spambot=yes | |
SetEnvIfNoCase Referer webmonetizer.net spambot=yes | |
SetEnvIfNoCase Referer website-errors-scanner.com spambot=yes | |
SetEnvIfNoCase Referer websites-reviews.com spambot=yes | |
SetEnvIfNoCase Referer websocial.me spambot=yes | |
SetEnvIfNoCase Referer williamrobsonproperty.com spambot=yes | |
SetEnvIfNoCase Referer wmasterlead.com spambot=yes | |
SetEnvIfNoCase Referer wordpress-crew.net spambot=yes | |
SetEnvIfNoCase Referer xn--80adgcaax6acohn6r.xn--p1ai spambot=yes | |
SetEnvIfNoCase Referer xn--c1acygb.xn--p1ai spambot=yes | |
SetEnvIfNoCase Referer xn--q1a.xn--b1aube0e.xn--c1acygb.xn--p1ai spambot=yes | |
SetEnvIfNoCase Referer ykecwqlixx.ru spambot=yes | |
SetEnvIfNoCase Referer youporn-forum.ga spambot=yes | |
SetEnvIfNoCase Referer youporn-forum.uni.me spambot=yes | |
SetEnvIfNoCase Referer youporn-ru.com spambot=yes | |
SetEnvIfNoCase Referer yourserverisdown.com spambot=yes | |
SetEnvIfNoCase Referer youtubedownload.org spambot=yes | |
SetEnvIfNoCase Referer yurgorod.ru spambot=yes | |
SetEnvIfNoCase Referer zastroyka.org spambot=yes | |
SetEnvIfNoCase Referer zazagames.org spambot=yes | |
SetEnvIfNoCase Referer zverokruh-shop.cz spambot=yes | |
</IfModule> | |
#################################################### | |
# | |
# WP | |
# | |
#################################################### | |
# BEGIN WordPress | |
<IfModule mod_rewrite.c> | |
RewriteEngine On | |
RewriteBase / | |
RewriteRule ^index\.php$ - [L] | |
RewriteCond %{REQUEST_FILENAME} !-f | |
RewriteCond %{REQUEST_FILENAME} !-d | |
RewriteRule . /index.php [L] | |
</IfModule> | |
# END WordPress |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment