gpt4 book ai didi

.htaccess - 使用 .htaccess 重定向到 https

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

我对 .htaccess 有疑问

我的服务器中有一个证书,它只适用于 https://example.com (不是 https://www.example.com )因此,我正在尝试将 .htaccess 重定向到正确的 url。

我的意图是这样的:

http://www.example.com --> https://example.com
http://example.com --> https://example.com
https://www.example.com --> https://example.com

我尝试了不同的组合,但似乎没有任何效果。目前我有这个,但似乎不适用于

http://www.example.com/subfolder,我不知道发生了什么...

RewriteEngine On

# Follow symbolic links.
Options +FollowSymLinks

RewriteCond %{HTTP_HOST} !^$
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteCond %{HTTPS} off
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L,NE]

# Prevent directory listings
Options All -Indexes

最佳答案

那个代码对我不起作用,我发现那个对我有用

RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L]

关于.htaccess - 使用 .htaccess 重定向到 https,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33448316/

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