有没有路径我想将example.com/*重定向到http://example.com/ *
我听说过拥有静态网址对SEO很有用,例如,如果访问者导航到www.example.com/path或只是example.com/path,我会将它们重定向到{{3} }
提前致谢。
答案 0 :(得分:1)
我认为这会对你有帮助
RewriteCond %{HTTPS} off
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^ http://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
RewriteCond %{HTTPS} on
RewriteCond %{HTTP_HOST} ^www\.(.+)$
RewriteRule ^ https://%1%{REQUEST_URI} [R=301,L]