Forum Moderators: phranque
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_REFERER} cool\.com/
RewriteRule ^$ http://example.com/cool.html [R=301,L]
RewriteCond %{HTTP_REFERER} stumbleupon\.com/
RewriteRule ^$ http://example.com/stumble.html [R=301,L]
Cool.com traffic works and is redirected to cool.html, but traffic from stumbleupon.com. isnt redirected to stumble.html
What am I doing wrong?
Jim