i am getting traffic from a particular website, (it shall remain unnamed), i want it so when someone clicks a link from their to my site, it goes elsewhere. anyone know how to do this?
.htaccess file Options +FollowSymLinks RewriteEngine on RewriteCond %{HTTP_REFERER} referrerURL\.com/ RewriteRule ^$ www.redirectedURL.com [R=301,L] detail here: http://www.adesblog.com/2008/03/30/htaccess-redirect-traffic-from-particular-url-to-another/ is that what you want?
so if i'm getting traffic from here, and i want it redirected, this is what it would look like? Options +FollowSymLinks RewriteEngine on RewriteCond %{HTTP_REFERER} forums.digitalpoint\.com/ RewriteRule ^$ forums.digitalpoint.com [R=301,L]
Options +FollowSymLinks RewriteEngine on RewriteCond %{HTTP_REFERER} forums.digitalpoint\.com/ RewriteRule ^$ anotherdomain.com [R=301,L] that you will be redirecting traffic from forums.DP.com to your site to anotherdomain.com or page within your site saying "you are not allowed to access or such"