Apache:Redirecionando de HTTP para HTTPS: Difference between revisions

From Wiki
No edit summary
Line 37: Line 37:




*[[Apache HTTP Server|  Mais Artigos sobre Apache HTTP Server]]
*[[IBM HTTP Server|  Mais Artigos sobre Apache HTTP Server]]


[[Category:IBM HTTP Server]]
[[Category:Apache HTTP Server]]
[[Category:Apache HTTP Server]]

Revision as of 20:17, 11 December 2013

Como faço para redirecionar de HTTP para HTTPS no Apache?

A resposta é utilizar o mod_rewrite. Veja como:


Vá para o diretório /opt/IBM/HTTPServer/conf

> cd /opt/IBM/HTTPServer/conf

Edite o arquivo httpd.conf

Remova o comentário da linha

LoadModule rewrite_module modules/mod_rewrite.so

Vá para o final do arquivo e adicione como abaixo

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

Salve e feche o arquivo

Reinicie o http server

> /opt/IBM/HTTPServer/bin/apachectl restart


Ver também