Forum Moderators: mack
How can I make search engines like yahoo and google redirect to my entry pages from the search engine results links ... and his from verison go to the main page? I see the stats, but the boss claims that all the leads are only generated by verison...which I highly doubt.
I have tried this with .htaccess file of
RewriteEngine On
RewriteCond %{HTTP_REFERER} ^http://www.google.com/
RewriteRule /* [mysite.com...] [R,L]
but it did not work, so can this be done with IP addresses, I know it can block IP's but how do I do it?
Thanks in advance! :)
Mr Limited Abililites
RewriteEngine On
RewriteCond %{HTTP_REFERER} ^http://www\.(google¦yahoo)\.com/
RewriteRule .* http://www.site.com/your_entry_page.html [R,L]
RewriteCond %{HTTP_REFERER} ^http://(.*)?veri(s¦z)on\.com/
RewriteRule .* http://www.site.com/the_boss.html [R,L]
Edit: Just saw this: and his from verison go to the main page?
By that you mean the main page of the site, I think? In that case you don't need the second RewriteCond and RewriteRule.