Jump to content

Como forçar seu site a abrir sempre em https (SSL)


JJeJJe

Recommended Posts

Para forçar seu site a abrir sempre em ambiente seguro (https://) você pode usar duas opções:

1ª) Alterando seu arquivo .htaccess

Esta á a alternativa que considero mais simples e prática. Basta apenas inserir este código em seu .htaccess:

RewriteCond %{HTTPS} !=on

RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

2ª) Através do PHP

Para aqueles que, por algum motivo, não podem alterar o .htaccess, há esta function que resolve o problema.

<?php
function ForceHTTPS() {
if ($_SERVER[‘HTTPS’] != "on") {

$url = $_SERVER[‘SERVER_NAME’];

$new_url = "https://" . $url . $_SERVER[‘REQUEST_URI’];
header("Location: $new_url");
exit;
}
}
?>

[/PHP]

Depois chame a função:

[PHP]<?php ForceHTTPS(); ?>[/PHP]

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

Do you agree with our terms?