how to redirect page to https in php?

Rédigé par Sozezzo - - Aucun commentaire

Site d'origine : http://stackoverflow.com/questions/9135290/how-to-redirect-page-to-https-in-php

 


Ajouter aux fichier : index.php

# Add to redirect to HTTPS
if(!isset($_SERVER['HTTPS']) || $_SERVER['HTTPS'] == "" || $_SERVER['HTTPS'] == "off"){
    $redirect = "https://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
    header("Location: $redirect");
    exit;
}

Lire la suite de how to redirect page to https in php?

RemoteIE : Exécuter IE sur Android, iOS et OS X

Rédigé par Sozezzo - - Aucun commentaire

It's Web Proxy too.


Site d'origine : http://www.blog-nouvelles-technologies.fr/56917/remoteie-microsoft-permet-dexecuter-ie-sur-android-ios-et-os-x/


https://remote.modern.ie/subscribe


Lire la suite de RemoteIE : Exécuter IE sur Android, iOS et OS X

My blog, why not?

Rédigé par Sozezzo - - 1 commentaire

Portugueis, English, or français.... Mes annotations. My stuffs....

I will try to abandon shaarli because inMyPluxml is parfait.

My old blogs stay privately, but I will transfer it to here!
 


/* Test */
function writeMessage() {
  echo "You are really a nice person, Have a nice time!";
}
         
/* Calling a PHP Function */
writeMessage();
Fil RSS des articles de cette catégorie