Htaccess重定向指定的url以及其他url的路径

时间:2017-12-31 11:52:37

标签: .htaccess url-rewriting

我想将网址重定向到我网站的其他网址。

staging.mydomain.com/pathurl/

到这一个:

staging.mydomain.com/newpathrul/

我尝试使用以下代码在我的根项目文件夹中添加httaccess文件:

RewriteCond %{HTTP_HOST} staging.mydomain.com/pathurl/ [NC]
RewriteRule ^/?$ "staging.mydomain.com/newpathrul/" [R=301,L]

但它不起作用,你能说出正确的htaccess代码将指定的url重定向到其他url的路径。

1 个答案:

答案 0 :(得分:0)

HTTP_HOST Variable只有host part,但没有path part

RewriteCond %{HTTP_HOST} ^staging.mydomain.com$ [NC]
RewriteRule ^pathurl/(.*)$ /newpathurl/$1 [R=301,NC,L]
相关问题