gpt4 book ai didi

apache - 重定向 http ://to all pages https://

转载 作者:太空宇宙 更新时间:2023-11-03 13:08:00 25 4
gpt4 key购买 nike

我想将所有页面从 http://重定向到 https://。

我正在使用 Kohana 框架,但只有主页重定向。我转到 example.com/anyoldpage,但如果我转到 http://example.com/anyoldpages,它甚至不会重定向到 http://,但是如果我转到 https://example.com,它会起作用。

谁能帮帮我? rel="canonical" 适用于整个网站。
例如:
如果用户登陆 http://example.com/anyoldpagehttp://www.example.com/anyoldpage 任何页面 rel="canonical" 工作并呈现 https://所以在 SEO 术语中它工作得很好。不过,我打算购买绿色条形 SSL 证书,所以真的希望这个 .htaccess 文件能正常工作。

当前代码是。

RewriteEngine On
RewriteCond %{HTTP_HOST} ^do-main com [nc]
RewriteRule (.*) https://www.example.com/$1 [r=301,nc]

RewriteEngine On
RewriteCond %{HTTPS} !on
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}

请帮忙,谢谢:)

最佳答案

你有一些额外的行,所以就这样做:

RewriteEngine On
RewriteCond %{HTTPS} !on
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}

关于apache - 重定向 http ://to all pages https://,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24110240/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com