最近我将网站迁移到https,并在.htaccess中使用此代码将所有带有http的旧链接重定向到htpps:
RewriteCond %{HTTP_HOST} domaintest\.com [NC]
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://domaintest.com/$1 [R,L]
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
但是,如果您在浏览器中手动输入仅带有http的URL,则不会重定向到https。另外,社交网络中的所有旧链接:Facebook,请勿重定向到https链接。
对此有任何帮助吗?
谢谢