1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

How To Block All REFERERs from my site (wanna only direct traffic)

Discussion in 'Apache' started by mojtata, Aug 2, 2008.

  1. #1
    I have been using this to disallow referer from site site.com
    RewriteEngine on
    RewriteCond %{HTTP_REFERER} example.com [NC]
    RewriteRule .* - [F]

    What should i use to block all REFERERs.

    Thanks
     
    mojtata, Aug 2, 2008 IP
  2. buldozerceto

    buldozerceto Active Member

    Messages:
    1,137
    Likes Received:
    43
    Best Answers:
    0
    Trophy Points:
    88
    #2
    ....
    RewriteEngine on
    RewriteCond %{HTTP_REFERER} ^.*$ [NC]
    RewriteRule .* - [F,L]

    change example.com with your web url
     
    buldozerceto, Aug 2, 2008 IP