简体   繁体   English

.htaccess:除了“ RewriteRule ^(。*)$…”以外

[英].htaccess: something more than “RewriteRule ^(.*)$ …”

I have several domains for my page: https://www.mypage.es , https://www.mypage.it .... Now I'm trying to redirect just my french domain https://www.mypage.fr to https://www.mypage.com . 我有几个域名为我的网页: https://www.mypage.eshttps://www.mypage.it ....现在我想重定向只是我的法语域名的https://www.mypage。 frhttps://www.mypage.com So I have tried this: 所以我尝试了这个:

RewriteCond %{SERVER_PORT} ^443$
RewriteRule https://www.mypage.fr$ https://www.mypage.com/$1 [R=301,L]

but doesn't work... 但不起作用...

NOTE: This is working ok: 注意:这可以正常工作:

RewriteCond %{SERVER_PORT} ^443$
RewriteRule ^(.*)$ http://www.mypage.com/$1 [R=301,L]

Regards 问候

Javi 哈维

RewriteCond %{SERVER_PORT} ^443$
RewriteCond %{HTTP_HOST} ^www.mypage.fr$
RewriteRule ^(.*)$ http://www.mypage.com/$1 [R=301,L]

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM