使用htaccess将子域重定向到https

时间:2016-04-08 10:26:23

标签: .htaccess redirect mod-rewrite https subdomain

我想将所有网址仅从一个子域重定向到https。

我的网址http://nip.domain.com/sitexy.html应为https://nip.domain.com/sitexy.html

使用此代码,我将通过https重定向到主页,路径将被删除:

RewriteCond %{HTTPS} off
RewriteCond %{HTTP_HOST} ^(nip)\. [NC]
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R]

任何人都可以给我一个提示,如何保持领域的路径? 谢谢!

0 个答案:

没有答案