Apache SSL 与 LetsEncrypt 混淆重定向

Apache SSL 与 LetsEncrypt 混淆重定向

我刚刚letsencrypt在运行 apache 的 CentOS 6 服务器上进行了设置,SSL 一切正常。我刚刚尝试使用以下命令http进行重定向https

Redirect permanent / https://example.com/

但是,在以下情况下: ,我得到的http://example.com/somepath不是......https://example.com/somepathhttps://example.comesomepath

由于某种原因,/没有添加到我访问的路径中,而且我不知道如何解决此问题。

我的httpd.conf

NameVirtualHost *:80

<VirtualHost *:80>
ServerName example.com
ServerAlias example.com
DocumentRoot /var/www/html/
# RedirectMatch permanent ^(.*)$ https://www.example.com$1 # tried using this too, no luck
Redirect permanent / https://example.com/
</VirtualHost>

跑步:Apache/2.2.15 (Unix)

相关内容