本文介绍了使用.htaccess的特定网址重定向的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有此域 www.mydomain.com/great/redirect
I have this domain "www.mydomain.com/great/redirect"
我要将其重定向到 www.redirect.com/great/redirect
I want to redirect it to "www.redirect.com/great/redirect"
使用.htaccess,所以我该怎么做?
using .htaccess so how can I do that?
现在我正在使用html
Right now I am doing that using html
<meta http-equiv="refresh" content="0;url=http://redirect.com/great/redirect" />
位于 www.mydomain.com/great/redirect文件的位置。
in location of "www.mydomain.com/great/redirect" file.
推荐答案
在 www.mydomain.com
的站点根目录.htaccess中,您可以使用以下规则:
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]
这篇关于使用.htaccess的特定网址重定向的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!