• I have wordpress installation in the www folder. I’m trying to redirect url pointing to my domian to another domian using .htacess

    redirect:

    mydomian.com/goto/?sub=test
    to
    another-domian.com/test

    I have the following my .htaccess but it doesn’t work.

    Options +FollowSymLinks
    RewriteCond %{HTTP_HOST} ^(www\.)?mydomian\.com [NC]
    RewriteRule ^goto$ http://www.another-domian.com/$1 [L]
  • The topic ‘Redirecting specific link to another domian’ is closed to new replies.