我有这个域名" www.mydomain.com/great/redirect"
我想将其重定向到" www.redirect.com/great/redirect"
使用.htaccess,我该怎么做?
现在我正在使用html
<meta http-equiv="refresh" content="0;url=http://redirect.com/great/redirect" />
位于&#34; www.mydomain.com/great/redirect"文件。
答案 0 :(得分:0)
www.mydomain.com
的网站内根.htaccess可以使用此规则:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^(www\.)?mydomain\.com$ [NC]
RewriteRule ^great/redirect/?$ http://redirect.com%{REQUEST_URI} [L,NC,R=301]