因此,我尝试以特定方式配置我的服务器,以便任何访问http://www.subdomain.domain.com或者https://www.subdomain.domain.com重定向到 https:// 而不带 www。
我需要什么 Htaccess 来实现这个目的?
答案1
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
RewriteCond %{HTTP_HOST} ^www\.subdomain\.domain\.com$ [NC]
RewriteRule ^(.*)$ https://subdomain.domain.com/$1 [L,R=301]