htaccess help

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • DODevelopment
    Confirmed User
    • Jun 2014
    • 127

    #1

    htaccess help

    Hi,

    Im trying to do the following, if htaccess detects incoming traffic from site A, i want it to send it to another website.

    So if for eg my site detects incoming traffic coming from nfl.com i want to automatically send those visitors to nflfans.com/signup/

    (its so i can setup specific landing pages on different domains)

    Rich
  • Denny
    Too lazy to set a custom title
    • Feb 2005
    • 17393

    #2
    Try this, maybe:

    Code:
    RewriteEngine on
    RewriteCond %{HTTP_REFERER} ://[^.]+\.nfl\. [NC]
    RewriteRule ^(.*)$ http://nflfans.com/signup/

    Comment

    • CPA-Rush
      small trip to underworld
      • Mar 2012
      • 4927

      #3
      Code:
      RewriteEngine On
      RewriteCond %{HTTP_REFERER} .*incomingtraffic.com.*$
      RewriteRule ^(.*)$ http://incomingtrafficfans.com/signup

      automatic exchange - paxum , bitcoin,pm, payza

      . daizzzy signbucks caution will black-hat black-hat your traffic

      ignored forever :zuzana designs

      Comment

      Working...