Skip to content

Instantly share code, notes, and snippets.

@edheltzel
Last active May 31, 2016 20:11
Show Gist options
  • Save edheltzel/e4a8fde3608f9510643d15bacdd7bb1b to your computer and use it in GitHub Desktop.
Save edheltzel/e4a8fde3608f9510643d15bacdd7bb1b to your computer and use it in GitHub Desktop.
redirect users based on Refereeing URL
RewriteEngine On
RewriteCond %{HTTP_REFERER} .*yelp.com.*$ [OR]
RewriteCond %{HTTP_REFERER} .*google.com.*$ [OR]
RewriteCond %{HTTP_REFERER} .*some_website.com.*$ [OR]
RewriteCond %{HTTP_REFERER} .*github.com.*$
RewriteRule ^(.*)$ http://your_site/custom_landing_page
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment