如何使用htaccess从example.com/path/file重定向到http://example.com/path/file?

时间:2018-04-21 15:13:55

标签: .htaccess http redirect

有没有路径我想将example.com/*重定向到http://example.com/ *

我听说过拥有静态网址对SEO很有用,例如,如果访问者导航到www.example.com/path或只是example.com/path,我会将它们重定向到{{3} }

提前致谢。

1 个答案:

答案 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]