Mysql
 sql >> Base de données >  >> RDS >> Mysql

Même login sur 2 sites

Vous recherchez un script d'authentification unique en utilisant PHP. C'est le terme que vous devez rechercher. Un modèle simple serait :

Site :http://auth.local/ :

<?php
  // Get the request.
  // Validate the session.
  // Pass a Secure Hash and log the user in to the main domain.
?>

Site :http://site1.local/ :

<?php
  // Check if there is a session.
  // If already logged in, no problem.
  // If not, send him back to auth.
  header("Location: http://auth.local/?redirect_to=http://site1.local/");

Site :http://site2.local/ :

<?php
  // Check if a session is there.
  // If already logged in, no problem.
  // If not, send him back to auth.
  header("Location: http://auth.local/?redirect_to=http://site2.local/");

Voir les réponses à la question Comment faire authentification unique avec PHP ? pour plus d'informations.