I want to redirect according to referring page. Example: LINKS from evilwebsite/pageONE.html >>> redirects to mywebsite/pageONE.html LINKS from evilwebsite/pageTWO.html >>> redirects to mywebsite/pageTWO.html Etc. PM me with your rates *if* what I want is even possible to do!
RewriteEngine on RewriteCond %{HTTP_REFERER} ^http://www\.badsite1\.com [NC] RewriteRule (.*) http://mysite/$1 [R] Code (markup): The above redirects based on the page from the bad site so if the page was badpage.html it'll send to mysite/badpage.html if the bad site page was xyz.html then it'll send to mysite/xyz.html Hope that's what you want.