Specific url redirect using .htaccess

2019-08-01 18:17发布

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条回答
仙女界的扛把子
2楼-- · 2019-08-01 19:14

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]
查看更多
登录 后发表回答