谁能在这件事上指导我,我想解决重定向链?
http://www.example.com
重定向到https://www.example.com
然后重定向到https://example.com
.
我想直接从
http://www.example.com
到
https://example.com
.
WordPress中的重定向插件不起作用,因为它们只用于重定向页面或帖子。
这是中的重定向代码。htaccess。
# BEGIN rlrssslReallySimpleSSL rsssl_version[3.3.5]
<IfModule mod_rewrite.c>
RewriteEngine on RewriteCond %{HTTP:CF-Visitor} \'"scheme":"http"\'
RewriteCond %{REQUEST_URI} !wp-content\\/cache\\/(all|wpfc-mobile-cache)
RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L]
</IfModule>
# END rlrssslReallySimpleSSL