我目前有以下哪些:
1.从url中删除www.并重定向到https://somedomain.com
1.将http://请求重定向到https://
这工作很好,这里是代码...
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1%{REQUEST_URI} [R=301,QSA,NC,L]
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
我现在面临的问题是...如何从子域(例如https://www.subdomain.maindomain.com)中删除www.并将其重定向到https://subdomain.maindomain.com
希望有人能帮忙
2条答案
按热度按时间rslzwgfq1#
试试看:
ttp71kqs2#
要从子域中删除WWW,只需使用以下命令: