- Inicio »
- Código fuente »
- Redirigir de http a https desde PHP
Publicado por : Ignacio Cisneros
lunes, 20 de abril de 2009
Este código sirve para redireccionar a la gente que entre a nuestro sitio web por http en lugar de https
<?php
if(!$_SERVER['HTTPS']== 'on'){
$url_https="https://". $_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI'];
header("Location: $url_https");
exit();
}
?>
gracias me fue de gran ayuda
ResponderEliminarPara el causar el efecto contrario:
ResponderEliminarif($_SERVER['HTTPS']== 'on'){
$url_http="http://".$_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI'];
header("Location: $url_http");
exit(); }
donde pongo este codigo?
ResponderEliminar