Acabei de configurar letsencrypt
no meu servidor CentOS 6 executando o apache e o SSL funciona bem. Acabei de tentar redirecionar http
para https
usando isto:
Redirect permanent / https://example.com/
Mas, no caso de ir para: http://example.com/somepath
, em vez de obter https://example.com/somepath
, recebo https://example.comesomepath
...
Por algum motivo, o /
não é adicionado ao caminho que estou acessando e não consigo ver como posso corrigir esse problema.
Meu 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>
Em execução: Apache/2.2.15 (Unix)