Specific url redirect using .htaccess

2019-08-01 18:47发布

问题:

I have this domain "www.mydomain.com/great/redirect"

I want to redirect it to "www.redirect.com/great/redirect"

using .htaccess so how can I do that?

Right now I am doing that using html

<meta http-equiv="refresh" content="0;url=http://redirect.com/great/redirect" /> 

in location of "www.mydomain.com/great/redirect" file.

回答1:

Inside site root .htaccess of www.mydomain.com you can use this rule:

RewriteEngine On

RewriteCond %{HTTP_HOST} ^(www\.)?mydomain\.com$ [NC]
RewriteRule ^great/redirect/?$ http://redirect.com%{REQUEST_URI} [L,NC,R=301]