我想将所有网址仅从一个子域重定向到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]
任何人都可以给我一个提示,如何保持领域的路径? 谢谢!