rattfieldnz/bitcoin-faucet-rotator/master/public/.htaccess - Htaccess File

rattfieldnz/bitcoin-faucet-rotator/master/public/.htaccess

<IfModule mod_rewrite.c>
    RewriteCond %{HTTPS} !=on
    RewriteCond %{HTTP_HOST} ^www.(.+)$ [NC]
    RewriteRule ^ http://%1%{REQUEST_URI} [R=301,L]

    <IfModule mod_negotiation.c>
        Options -MultiViews
    </IfModule>

    RewriteEngine On

    # Redirect Trailing Slashes...
    RewriteRule ^(.*)/$ /$1 [L,R=301]

    # Handle Front Controller...
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^ index.php [L]
    
    RewriteBase /
    RewriteCond %{HTTP_HOST} ^107.170.213.25$
    RewriteRule ^(.*)$ http://freebtc.website/$1 [L,R=301]

    RewriteCond %{HTTP_HOST} .
    RewriteCond %{HTTP_HOST} !freebtc.website$
    RewriteRule ^ - [F]
    RewriteCond %{HTTP_HOST} !^(freebtc.website)?$
    RewriteRule (.*) http://freebtc.website/$1 [R=301,L]
</IfModule>

# ------------------------------------------------------------------------------
# | CORS-enabled images                                                        |
# ------------------------------------------------------------------------------

# Send the CORS header for images when browsers request it.
# https://developer.mozilla.org/en-US/docs/HTML/CORS_Enabled_Image
# http://blog.chromium.org/2011/07/using-cross-domain-images-in-webgl-and.html
# http://hacks.mozilla.org/2011/11/using-cors-to-load-webgl-textures-from-cross-domain-images/

<IfModule mod_setenvif.c>
    <IfModule mod_headers.c>
        <FilesMatch ".(cur|gif|ico|jpe?g|png|svgz?|webp)$">
            SetEnvIf Origin ":" IS_CORS
            Header set Access-Control-Allow-Origin "*" env=IS_CORS
            Header always edit Set-Cookie (.*) "$1; HTTPOnly; Secure"
        </FilesMatch>
    </IfModule>
</IfModule>

# ------------------------------------------------------------------------------
# | Web fonts access                                                           |
# ------------------------------------------------------------------------------

# Allow access to web fonts from all domains.

<IfModule mod_headers.c>
    <FilesMatch ".(eot|otf|tt[cf]|woff)$">
        Header set Access-Control-Allow-Origin "*"
    </FilesMatch>
  
  <FilesMatch ".(cur|gif|ico|jpe?g|png|svgz?|webp)$">
        Header set Access-Control-Allow-Origin "*"
    </FilesMatch>
</IfModule>

# ##############################################################################
# # INTERNET EXPLORER                                                          #
# ##############################################################################

# ------------------------------------------------------------------------------
# | Better website experience                                                  |
# ------------------------------------------------------------------------------

# Force Internet Explorer to render pages in the highest available mode
# in the various cases when it may not.
# http://hsivonen.iki.fi/doctype/ie-mode.pdf

<IfModule mod_headers.c>
    Header set X-UA-Compatible "IE=edge"
    # `mod_headers` cannot match based on the content-type, however, this
    # header should be send only for HTML pages and not for the other resources
    <FilesMatch ".(appcache|atom|crx|css|cur|eot|f4[abpv]|flv|gif|htc|ico|jpe?g|js|json(ld)?|m4[av]|manifest|map|mp4|oex|og[agv]|opus|otf|pdf|png|rdf|rss|safariextz|svgz?|swf|tt[cf]|vcf|vtt|webapp|web[mp]|woff|xml|xpi)$">
        Header unset X-UA-Compatible
    </FilesMatch>
</IfModule>

# ------------------------------------------------------------------------------
# | Cookie setting from iframes                                                |
# ------------------------------------------------------------------------------

# Allow cookies to be set from iframes in Internet Explorer.
# http://msdn.microsoft.com/en-us/library/ms537343.aspx
# http://www.w3.org/TR/2000/CR-P3P-20001215/

<IfModule mod_headers.c>
    Header set P3P "policyref="/w3c/p3p.xml", CP="IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT""
    Header always edit Set-Cookie (.*) "$1; HTTPOnly; Secure"
</IfModule>

# ##############################################################################
# # MIME TYPES AND ENCODING                                                    #
# ##############################################################################

# ------------------------------------------------------------------------------
# | Proper MIME types for all files                                            |
# ------------------------------------------------------------------------------

<IfModule mod_mime.c>

  # Audio
    AddType audio/mp4                                   m4a f4a f4b
    AddType audio/ogg                                   oga ogg opus

  # Data interchange
    AddType application/json                            json map
    AddType application/ld+json                         jsonld

  # JavaScript
    # Normalize to standard type.
    # http://tools.ietf.org/html/rfc4329#section-7.2
    AddType application/javascript                      js

  # Video
    AddType video/mp4                                   f4v f4p m4v mp4
    AddType video/ogg                                   ogv
    AddType video/webm                                  webm
    AddType video/x-flv                                 flv

  # Web fonts
    AddType application/font-woff                       woff
    AddType application/vnd.ms-fontobject               eot

    # Browsers usually ignore the font MIME types and simply sniff the bytes
    # to figure out the font type.
    # http://mimesniff.spec.whatwg.org/#matching-a-font-type-pattern

    # Chrome however, shows a warning if any other MIME types are used for
    # the following fonts.

    AddType application/x-font-ttf                      ttc ttf
    AddType font/opentype                               otf

    # Make SVGZ fonts work on the iPad.
    # https://twitter.com/FontSquirrel/status/14855840545
    AddType     image/svg+xml                           svgz
    AddEncoding gzip                                    svgz

  # Other
    AddType application/octet-stream                    safariextz
    AddType application/x-chrome-extension              crx
    AddType application/x-opera-extension               oex
    AddType application/x-web-app-manifest+json         webapp
    AddType application/x-xpinstall                     xpi
    AddType application/xml                             atom rdf rss xml
    AddType image/webp                                  webp
    AddType image/x-icon                                cur
    AddType text/cache-manifest                         appcache manifest
    AddType text/vtt                                    vtt
    AddType text/x-component                            htc
    AddType text/x-vcard                                vcf

</IfModule>

# ------------------------------------------------------------------------------
# | UTF-8 encoding                                                             |
# ------------------------------------------------------------------------------

# Use UTF-8 encoding for anything served as `text/html` or `text/plain`.
AddDefaultCharset utf-8

# Force UTF-8 for certain file formats.
<IfModule mod_mime.c>
    AddCharset utf-8 .atom .css .js .json .jsonld .rss .vtt .webapp .xml
</IfModule>

<FilesMatch ".(htm|html|php)$">
    <IfModule mod_headers.c>
        BrowserMatch MSIE ie
        Header set X-UA-Compatible "IE=Edge,chrome=1" env=ie
    </IfModule>
</FilesMatch>

# ------------------------------------------------------------------------------
# | File access                                                                |
# ------------------------------------------------------------------------------

# Block access to directories without a default document.
# You should leave the following uncommented, as you shouldn't allow anyone to
# surf through every directory on your server (which may includes rather private
# places such as the CMS's directories).

<IfModule mod_autoindex.c>
    Options -Indexes
</IfModule>

# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

# Block access to hidden files and directories.
# This includes directories used by version control systems such as Git and SVN.

<IfModule mod_rewrite.c>
    RewriteCond %{SCRIPT_FILENAME} -d [OR]
    RewriteCond %{SCRIPT_FILENAME} -f
    RewriteRule "(^|/)." - [F]
</IfModule>

# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

# Block access to files that can expose sensitive information.

# By default, block access to backup and source files that may be left by some
# text editors and can pose a security risk when anyone has access to them.
# http://feross.org/cmsploit/

# IMPORTANT: Update the `<FilesMatch>` regular expression from below to include
# any files that might end up on your production server and can expose sensitive
# information about your website. These files may include: configuration files,
# files that contain metadata about the project (e.g.: project dependencies),
# build scripts, etc..

<FilesMatch "(^#.*#|.(bak|config|dist|fla|in[ci]|log|psd|sh|sql|sw[op])|~)$">

    # Apache < 2.3
    <IfModule !mod_authz_core.c>
        Order allow,deny
        Deny from all
        Satisfy All
    </IfModule>

    # Apache ? 2.3
    <IfModule mod_authz_core.c>
        Require all denied
    </IfModule>

</FilesMatch>

# ------------------------------------------------------------------------------
# | Reducing MIME type security risks                                          |
# ------------------------------------------------------------------------------

# Prevent some browsers from MIME-sniffing the response.

# This reduces exposure to drive-by download attacks and cross-origin data
# leaks, and should be left uncommented, especially if the web server is
# serving user-uploaded content or content that could potentially be treated
# as executable by the browser.

# http://www.slideshare.net/hasegawayosuke/owasp-hasegawa
# http://blogs.msdn.com/b/ie/archive/2008/07/02/ie8-security-part-v-comprehensive-protection.aspx
# http://msdn.microsoft.com/en-us/library/ie/gg622941.aspx
# http://mimesniff.spec.whatwg.org/

<IfModule mod_headers.c>
    Header set X-Content-Type-Options "nosniff"
</IfModule>

# ------------------------------------------------------------------------------
# | Reflected Cross-Site Scripting (XSS) attacks                               |
# ------------------------------------------------------------------------------

# (1) Try to re-enable the Cross-Site Scripting (XSS) filter built into the
#     most recent web browsers.
#
#     The filter is usually enabled by default, but in some cases it may be
#     disabled by the user. However, in Internet Explorer for example, it can
#     be re-enabled just by sending the `X-XSS-Protection` header with the
#     value of `1`.
#
# (2) Prevent web browsers from rendering the web page if a potential reflected
#     (a.k.a non-persistent) XSS attack is detected by the filter.
#
#     By default, if the filter is enabled and browsers detect a reflected
#     XSS attack, they will attempt to block the attack by making the smallest
#     possible modifications to the returned web page.
#
#     Unfortunately, in some browsers (e.g.: Internet Explorer), this default
#     behavior may allow the XSS filter to be exploited, thereby, it's better
#     to tell browsers to prevent the rendering of the page altogether, instead
#     of attempting to modify it.
#
#     http://hackademix.net/2009/11/21/ies-xss-filter-creates-xss-vulnerabilities
#
# IMPORTANT: Do not rely on the XSS filter to prevent XSS attacks! Ensure that
# you are taking all possible measures to prevent XSS attacks, the most obvious
# being: validating and sanitizing your site's inputs.
#
# http://blogs.msdn.com/b/ie/archive/2008/07/02/ie8-security-part-iv-the-xss-filter.aspx
# http://blogs.msdn.com/b/ieinternals/archive/2011/01/31/controlling-the-internet-explorer-xss-filter-with-the-x-xss-protection-http-header.aspx
# https://www.owasp.org/index.php/Cross-site_Scripting_%28XSS%29

<IfModule mod_headers.c>
    #                           (1)    (2)
    Header set X-XSS-Protection "1; mode=block"
    <FilesMatch ".(appcache|atom|crx|css|cur|eot|f4[abpv]|flv|gif|htc|ico|jpe?g|js|json(ld)?|m4[av]|manifest|map|mp4|oex|og[agv]|opus|otf|pdf|png|rdf|rss|safariextz|svgz?|swf|tt[cf]|vcf|vtt|webapp|web[mp]|woff|xml|xpi)$">
        Header unset X-XSS-Protection
    </FilesMatch>
</IfModule>

# ##############################################################################
# # WEB PERFORMANCE                                                            #
# ##############################################################################

# ------------------------------------------------------------------------------
# | Compression                                                                |
# ------------------------------------------------------------------------------

<IfModule mod_deflate.c>

    # Force compression for mangled headers.
    # http://developer.yahoo.com/blogs/ydn/posts/2010/12/pushing-beyond-gzipping
    <IfModule mod_setenvif.c>
        <IfModule mod_headers.c>
            SetEnvIfNoCase ^(Accept-EncodXng|X-cept-Encoding|X{15}|~{15}|-{15})$ ^((gzip|deflate)s*,?s*)+|[X~-]{4,13}$ HAVE_Accept-Encoding
            RequestHeader append Accept-Encoding "gzip,deflate" env=HAVE_Accept-Encoding
        </IfModule>
    </IfModule>

    # Compress all output labeled with one of the following MIME-types
    # (for Apache versions below 2.3.7, you don't need to enable `mod_filter`
    #  and can remove the `<IfModule mod_filter.c>` and `</IfModule>` lines
    #  as `AddOutputFilterByType` is still in the core directives).
    <IfModule mod_filter.c>
        AddOutputFilterByType DEFLATE application/atom+xml 
                                      application/javascript 
                                      application/json 
                                      application/ld+json 
                                      application/rss+xml 
                                      application/vnd.ms-fontobject 
                                      application/x-font-ttf 
                                      application/x-web-app-manifest+json 
                                      application/xhtml+xml 
                                      application/xml 
                                      font/opentype 
                                      image/svg+xml 
                                      image/x-icon 
                                      text/css 
                                      text/html 
                                      text/plain 
                                      text/x-component 
                                      text/xml
    </IfModule>

</IfModule>

# ------------------------------------------------------------------------------
# | Content transformations                                                    |
# ------------------------------------------------------------------------------

# Prevent mobile network providers from modifying the website's content.
# http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.9.5.

<IfModule mod_headers.c>
   Header set Cache-Control "no-transform"
</IfModule>

# ------------------------------------------------------------------------------
# | ETags                                                                      |
# ------------------------------------------------------------------------------

# Remove `ETags` as resources are sent with far-future expires headers.
# http://developer.yahoo.com/performance/rules.html#etags.

# `FileETag None` doesn't work in all cases.
<IfModule mod_headers.c>
    Header unset ETag
</IfModule>

FileETag None

# ------------------------------------------------------------------------------
# | Expires headers                                                            |
# ------------------------------------------------------------------------------

# The following expires headers are set pretty far in the future. If you
# don't control versioning with filename-based cache busting, consider
# lowering the cache time for resources such as style sheets and JavaScript
# files to something like one week.

<IfModule mod_expires.c>

    ExpiresActive on
    ExpiresDefault                                      "access plus 1 month"

  # CSS
    ExpiresByType text/css                              "access plus 1 year"

  # Data interchange
    ExpiresByType application/json                      "access plus 0 seconds"
    ExpiresByType application/ld+json                   "access plus 0 seconds"
    ExpiresByType application/xml                       "access plus 0 seconds"
    ExpiresByType text/xml                              "access plus 0 seconds"

  # Favicon (cannot be renamed!) and cursor images
    ExpiresByType image/x-icon                          "access plus 1 week"

  # HTML components (HTCs)
    ExpiresByType text/x-component                      "access plus 1 month"

  # HTML
    ExpiresByType text/html                             "access plus 0 seconds"

  # JavaScript
    ExpiresByType application/javascript                "access plus 1 year"

  # Manifest files
    ExpiresByType application/x-web-app-manifest+json   "access plus 0 seconds"
    ExpiresByType text/cache-manifest                   "access plus 0 seconds"

  # Media
    ExpiresByType audio/ogg                             "access plus 1 month"
    ExpiresByType image/gif                             "access plus 1 month"
    ExpiresByType image/jpeg                            "access plus 1 month"
    ExpiresByType image/png                             "access plus 1 month"
    ExpiresByType video/mp4                             "access plus 1 month"
    ExpiresByType video/ogg                             "access plus 1 month"
    ExpiresByType video/webm                            "access plus 1 month"

  # Web feeds
    ExpiresByType application/atom+xml                  "access plus 1 hour"
    ExpiresByType application/rss+xml                   "access plus 1 hour"

  # Web fonts
    ExpiresByType application/font-woff                 "access plus 1 month"
    ExpiresByType application/vnd.ms-fontobject         "access plus 1 month"
    ExpiresByType application/x-font-ttf                "access plus 1 month"
    ExpiresByType font/opentype                         "access plus 1 month"
    ExpiresByType image/svg+xml                         "access plus 1 month"

</IfModule>

#Gzip
<ifmodule mod_deflate.c>
    AddOutputFilterByType DEFLATE text/text text/html text/plain text/xml text/css application/x-javascript application/javascript text/javascript
</ifmodule>
#End Gzip

<ifmodule mod_setenvif.c>
  SetEnvIfNoCase Referer semalt.com spambot=yes
  SetEnvIfNoCase Referer darodar.com spambot=yes
  SetEnvIfNoCase Referer buttons-for-website.com spambot=yes
  SetEnvIfNoCase Referer fbdownloader.com spambot=yes
  SetEnvIfNoCase Referer descargar-musicas-gratis.com spambot=yes
  SetEnvIfNoCase Referer baixar-musicas-gratis.com spambot=yes
  SetEnvIfNoCase Referer savetubevideo.com spambot=yes
  SetEnvIfNoCase Referer srecorder.com spambot=yes
  SetEnvIfNoCase Referer kambasoft.com spambot=yes
  SetEnvIfNoCase Referer ilovevitaly.com spambot=yes
  SetEnvIfNoCase Referer ilovevitaly.co spambot=yes
  SetEnvIfNoCase Referer ilovevitaly.ru spambot=yes
  SetEnvIfNoCase Referer blackhatworth.com spambot=yes
  SetEnvIfNoCase Referer priceg.com spambot=yes
  SetEnvIfNoCase Referer backgroundpictures.net spambot=yes
  SetEnvIfNoCase Referer embedle.com spambot=yes
  SetEnvIfNoCase Referer extener.com spambot=yes
  SetEnvIfNoCase Referer fbfreegifts.com spambot=yes
  SetEnvIfNoCase Referer feedouble.com spambot=yes
  SetEnvIfNoCase Referer feedouble.net spambot=yes
  SetEnvIfNoCase Referer japfm.com spambot=yes
  SetEnvIfNoCase Referer joinandplay.me spambot=yes
  SetEnvIfNoCase Referer joingames.org spambot=yes
  SetEnvIfNoCase Referer iskalko.ru spambot=yes
  SetEnvIfNoCase Referer musicprojectfoundation.com spambot=yes
  SetEnvIfNoCase Referer myprintscreen.com spambot=yes
  SetEnvIfNoCase Referer slftsdybbg.ru spambot=yes
  SetEnvIfNoCase Referer edakgfvwql.ru spambot=yes
  SetEnvIfNoCase Referer openfrost.com spambot=yes
  SetEnvIfNoCase Referer openfrost.net spambot=yes
  SetEnvIfNoCase Referer openmediasoft.com spambot=yes
  SetEnvIfNoCase Referer serw.clicksor.com spambot=yes
  SetEnvIfNoCase Referer socialseet.ru spambot=yes
  SetEnvIfNoCase Referer sharebutton.net spambot=yes
  SetEnvIfNoCase Referer cityadspix.com spambot=yes
  SetEnvIfNoCase Referer screentoolkit.com spambot=yes
  SetEnvIfNoCase Referer softomix.com spambot=yes
  SetEnvIfNoCase Referer softomix.net spambot=yes
  SetEnvIfNoCase Referer softomix.ru spambot=yes
  SetEnvIfNoCase Referer gobongo.info spambot=yes
  SetEnvIfNoCase Referer myftpupload.com spambot=yes
  SetEnvIfNoCase Referer websocial.me spambot=yes
  SetEnvIfNoCase Referer luxup.ru spambot=yes
  SetEnvIfNoCase Referer ykecwqlixx.ru spambot=yes
  SetEnvIfNoCase Referer soundfrost.org spambot=yes
  SetEnvIfNoCase Referer seoexperimenty.ru spambot=yes
  SetEnvIfNoCase Referer cenokos.ru spambot=yes
  SetEnvIfNoCase Referer star61.de spambot=yes
  SetEnvIfNoCase Referer superiends.org spambot=yes
  SetEnvIfNoCase Referer vapmedia.org spambot=yes
  SetEnvIfNoCase Referer econom.co spambot=yes
  SetEnvIfNoCase Referer vodkoved.ru spambot=yes
  SetEnvIfNoCase Referer adcash.com spambot=yes
  SetEnvIfNoCase Referer videofrost.com spambot=yes
  SetEnvIfNoCase Referer youtubedownload.org spambot=yes
  SetEnvIfNoCase Referer zazagames.org spambot=yes
  SetEnvIfNoCase Referer 7makemoneyonline.com spambot=yes
  SetEnvIfNoCase Referer ranksonic.info spambot=yes
  SetEnvIfNoCase Referer hulfingtonpost.com spambot=yes
  SetEnvIfNoCase Referer viandpet.com spambot=yes
  SetEnvIfNoCase Referer a-hau.mk spambot=yes
  SetEnvIfNoCase Referer cfsrating.sonicwall.com:8080 spambot=yes
  SetEnvIfNoCase Referer yougetsignal.com spambot=yes
  SetEnvIfNoCase Referer cenoval.ru spambot=yes
  SetEnvIfNoCase Referer bestwebsiteawards.com spambot=yes
  SetEnvIfNoCase Referer bestwebsitesawards.com spambot=yes
  SetEnvIfNoCase Referer simple-share-buttons.com spambot=yes
  SetEnvIfNoCase Referer adviceforum.info spambot=yes
  SetEnvIfNoCase Referer o-o-6-o-o.com spambot=yes
  SetEnvIfNoCase Referer o-o-8-o-o.com spambot=yes
  SetEnvIfNoCase Referer humanorightswatch.org spambot=yes
  SetEnvIfNoCase Referer smailik.org spambot=yes
  SetEnvIfNoCase Referer s.click.aliexpress.com spambot=yes
  SetEnvIfNoCase Referer social-buttons.com spambot=yes
  SetEnvIfNoCase Referer 4webmasters.org spambot=yes
  SetEnvIfNoCase Referer best-seo-offer.com spambot=yes
  SetEnvIfNoCase Referer best-seo-solution.com spambot=yes
  SetEnvIfNoCase Referer buttons-for-your-website.com spambot=yes
  SetEnvIfNoCase Referer www.Get-Free-Traffic-Now.com spambot=yes
  SetEnvIfNoCase Referer free-share-buttons.co spambot=yes
  SetEnvIfNoCase Referer theguardlan.com spambot=yes
  SetEnvIfNoCase Referer googlsucks.com spambot=yes
  SetEnvIfNoCase Referer buy-cheap-online.info spambot=yes
  SetEnvIfNoCase Referer forum69.info spambot=yes
  SetEnvIfNoCase Referer meendo-free-traffic.ga spambot=yes
  SetEnvIfNoCase Referer www.kabbalah-red-bracelets.com spambot=yes
  SetEnvIfNoCase Referer pornhub-forum.ga spambot=yes
  SetEnvIfNoCase Referer pornhubforum.tk spambot=yes
  SetEnvIfNoCase Referer anal-acrobats.hol.es spambot=yes
  SetEnvIfNoCase Referer youporn-forum.ga spambot=yes
  SetEnvIfNoCase Referer sexyteens.hol.es spambot=yes
  SetEnvIfNoCase Referer amanda-porn.ga spambot=yes
  SetEnvIfNoCase Referer generalporn.org spambot=yes
  SetEnvIfNoCase Referer depositfiles-porn.ga spambot=yes
  SetEnvIfNoCase Referer rapidgator-porn.ga spambot=yes
  SetEnvIfNoCase Referer torture.ml spambot=yes
  SetEnvIfNoCase Referer domination.ml spambot=yes
  SetEnvIfNoCase Referer webmaster-traffic.com spambot=yes
  SetEnvIfNoCase Referer youporn-forum.uni.me spambot=yes
  SetEnvIfNoCase Referer www.event-tracking.com spambot=yes
  SetEnvIfNoCase Referer event-tracking.com spambot=yes
  SetEnvIfNoCase Referer free-share-buttons.com spambot=yes
  SetEnvIfNoCase Referer free-social-buttons.com spambot=yes
  SetEnvIfNoCase Referer guardlink.org spambot=yes
  SetEnvIfNoCase Referer redtube-talk.ga spambot=yes
  SetEnvIfNoCase Referer sanjosestartups.com spambot=yes
  SetEnvIfNoCase Referer trafficmonetize.org spambot=yes
  SetEnvIfNoCase Referer sitevaluation.org spambot=yes
  SetEnvIfNoCase Referer 100dollars-seo.com spambot=yes
  SetEnvIfNoCase Referer dailyrank.net spambot=yes
  SetEnvIfNoCase Referer howtostopreferralspam.eu spambot=yes
  SetEnvIfNoCase Referer floating-share-buttons.com spambot=yes
  SetEnvIfNoCase Referer whattosearch.com spambot=yes
  SetEnvIfNoCase Referer zedwars.com spambot=yes
  SetEnvIfNoCase Referer sturmans.com.au spambot=yes
  SetEnvIfNoCase Referer e-buyeasy.com spambot=yes
  SetEnvIfNoCase Referer chinese-amezon.com spambot=yes
        SetEnvIfNoCase Referer 99girls.com spambot=yes

  Order allow,deny
  Allow from all
  Deny from env=spambot
</ifmodule>

<IfModule mod_rewrite.c>
RewriteCond %{HTTP_REFERER} advair [OR]
RewriteCond %{HTTP_REFERER} allegra [OR]
RewriteCond %{HTTP_REFERER} ambien [OR]
RewriteCond %{HTTP_REFERER} amoxicillin [OR]
RewriteCond %{HTTP_REFERER} baccarat [OR]
RewriteCond %{HTTP_REFERER} bet [OR]
RewriteCond %{HTTP_REFERER} blackjack [OR]
RewriteCond %{HTTP_REFERER} cash [OR]
RewriteCond %{HTTP_REFERER} casino [OR]
RewriteCond %{HTTP_REFERER} celeb [OR]
RewriteCond %{HTTP_REFERER} cheap [OR]
RewriteCond %{HTTP_REFERER} chinese-amezon [OR]
RewriteCond %{HTTP_REFERER} cialis [OR]
RewriteCond %{HTTP_REFERER} craps [OR]
RewriteCond %{HTTP_REFERER} credit [OR]
RewriteCond %{HTTP_REFERER} deal [OR]
RewriteCond %{HTTP_REFERER} debt [OR]
RewriteCond %{HTTP_REFERER} drug [OR]
RewriteCond %{HTTP_REFERER} effexor [OR]
RewriteCond %{HTTP_REFERER} equity [OR]
RewriteCond %{HTTP_REFERER} faxo [OR]
RewriteCond %{HTTP_REFERER} finance [OR]
RewriteCond %{HTTP_REFERER} gambling [OR]
RewriteCond %{HTTP_REFERER} hold-em [OR]
RewriteCond %{HTTP_REFERER} holdem [OR]
RewriteCond %{HTTP_REFERER} iconsurf [OR]
RewriteCond %{HTTP_REFERER} insurance [OR]
RewriteCond %{HTTP_REFERER} interest [OR]
RewriteCond %{HTTP_REFERER} internetsupervision [OR]
RewriteCond %{HTTP_REFERER} keno [OR]
RewriteCond %{HTTP_REFERER} levitra [OR]
RewriteCond %{HTTP_REFERER} lipitor [OR]
RewriteCond %{HTTP_REFERER} loan [OR]
RewriteCond %{HTTP_REFERER} meds [OR]
RewriteCond %{HTTP_REFERER} money [OR]
RewriteCond %{HTTP_REFERER} mortgage [OR]
RewriteCond %{HTTP_REFERER} omaha [OR]
RewriteCond %{HTTP_REFERER} paxil [OR]
RewriteCond %{HTTP_REFERER} pharmacy [OR]
RewriteCond %{HTTP_REFERER} pharmacies [OR]
RewriteCond %{HTTP_REFERER} phentermine [OR]
RewriteCond %{HTTP_REFERER} pheromone [OR]
RewriteCond %{HTTP_REFERER} pills [OR]
RewriteCond %{HTTP_REFERER} poker [OR]
RewriteCond %{HTTP_REFERER} refinance [OR]
RewriteCond %{HTTP_REFERER} roulette [OR]
RewriteCond %{HTTP_REFERER} scout [OR]
RewriteCond %{HTTP_REFERER} seventwentyfour [OR]
RewriteCond %{HTTP_REFERER} slot [OR]
RewriteCond %{HTTP_REFERER} syntryx [OR]
RewriteCond %{HTTP_REFERER} texas [OR]
RewriteCond %{HTTP_REFERER} tournament [OR]
RewriteCond %{HTTP_REFERER} tramadol [OR]
RewriteCond %{HTTP_REFERER} tramidol [OR]
RewriteCond %{HTTP_REFERER} valtrex [OR]
RewriteCond %{HTTP_REFERER} viagra [OR]
RewriteCond %{HTTP_REFERER} vicodin [OR]
RewriteCond %{HTTP_REFERER} win [OR]
RewriteCond %{HTTP_REFERER} xanax [OR]
RewriteCond %{HTTP_REFERER} zanax [OR]
RewriteCond %{HTTP_REFERER} zoloft [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?.*(-|.)?adult(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?.*(-|.)?anal(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?.*(-|.)?blow.?job(-|.).*$  [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?.*(-|.)?gay(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?.*(-|.)?incest(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?.*(-|.)?mature(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?.*(-|.)?nude(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?.*(-|.)?porn(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?.*(-|.)?pus*y(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?.*(-|.)?sex(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?.*(-|.)?teen(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?.*(-|.)?tits(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?.*(-|.)?titten(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?38ha(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?4free(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?4hs8(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?4t(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?4u(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?6q(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?8gold(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?911(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?abalone(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?adminshop(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?adultactioncam(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?aizzo(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?alexa(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?alphacarolinas(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?amateur(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?amateurxpass(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?ansar-u-deen(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?atelebanon(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?beastiality(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?bestiality(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?belize(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?best-deals(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?blogincome(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?bontril(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?bruce-holdeman(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?vixen1(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?ca-america(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?chatt-net(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?commerce(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?condo(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?conjuratia(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?consolidate(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?coswap(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?crescentarian(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?crepesuzette(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?dating(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?devaddict(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?discount(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?domainsatcost(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?doobu(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?e-site(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?egygift(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?empathica(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?empirepoker(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?e-poker-2005(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?escal8(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?eurip(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?exitq(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?eyemagination(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?fastcrawl(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?fearcrow(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?ferretsoft(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?fick(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?finance(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?flafeber(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?fidelityfunding(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?freakycheats(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?freeality(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?fuck(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?future-2000(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?gabriola(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?gallerylisting(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?gb.com(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?globusy(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?golf-e-course(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?gospelcom(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?gradfinder(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?hasfun(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?herbal(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?hermosa(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?highprofitclub(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?hilton(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?teaminspection(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?hotel(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?houseofseven(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?hurricane(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?iaea(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?ime(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?info(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?ingyensms(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?inkjet-toner(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?isacommie(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?istarthere(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?it.tt(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?italiancharms(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?iwantu(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?jfcadvocacy(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?jmhic(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?juris(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?kylos(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?laser-eye(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?leathertree(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?lillystar(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?linkerdome(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?livenet(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?low-limit(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?lowest-price(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?macsurfer(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?mall.uk(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?maloylawn(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?marketing(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?mcdortaklar(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?mediavisor(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?medications(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?mirror.sytes(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?mp3(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?(-|.)musicbox1(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?naked(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?netdisaster(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?netfirms(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?newtruths(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?no-limit(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?nude(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?nudeceleb(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?nutzu(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?odge(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?oiline(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?onlinegamingassoc(-|.).*$  [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?outpersonals(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?pagetwo(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?paris(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?passions(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?peblog(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?peng(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?perfume-cologne(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?personal(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?php-soft(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?pics(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?pisoc(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?pisx(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?popwow(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?porn(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?prescriptions(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?printdirectforless(-|.).*$  [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?ps2cool(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?psnarones(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?psxtreme(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?quality-traffic(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?registrarprice(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?reliableresults(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?rimpim(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?ro7kalbe(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?rohkalby(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?ronnieazza(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?rulo.biz(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?s5(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?samiuls(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?searchedu(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?seventwentyfour(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?seventwentyfour.*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?sex(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?sexsearch(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?sexsq(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?shoesdiscount(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?site-4u(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?site5(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?slatersdvds(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?sml338(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?sms(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?smsportali(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?software(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?sortthemesitesby(-|.).*$  [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?spears(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?spoodles(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?sportsparent(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?stmaryonline(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?strip(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?suttonjames(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?talk.uk-yankee(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?tecrep-inc(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?teen(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?terashells(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?thatwhichis(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?thorcarlson(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?tmsathai(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?traffixer(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?tranny(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?valeof(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?video(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?vinhas(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?vixen1(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?vpshs(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?vrajitor(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?w3md(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?webdevsquare(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?whois(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?withdrawal(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?worldemail(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?wslp24(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?ws-op(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?xopy(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?xxx(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?yelucie(-|.).*$ [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?youradulthosting(-|.).*$  [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?(-|.)zindagi(-|.).*$ [NC]
RewriteRule .* - [F]
</IfModule>

Header always edit Set-Cookie (.*) "$1; HTTPOnly; Secure"

On Github License

Files

Download PDF of Htaccess file
DEFLATE, HTTP_HOST, HTTP_REFERER, HTTPS, REQUEST_FILENAME, REQUEST_URI, SCRIPT_FILENAME

Comments

Apache