I want to redirect to different domain, 83answers.com if url contains forum string.
Like if my url is test.guru99.com/forum/xyxyxzz then it should redirect to 83answers.com. String forum can be anywhere in the url.
I have tried following
RewriteCond %{QUERY_STRING} forum
RewriteRule .* 83answers.com [R,L]
and also this
RewriteCond %{REQUEST_URI} forum
RewriteRule .* 83answers.com
But both didn't work ,Please help me to sort this out.
Regards