आप एक एकल साइन-ऑन स्क्रिप्ट की तलाश में हैं PHP का उपयोग करना। यही वह शब्द है जिसकी आपको तलाश करनी है। एक साधारण मॉडल होगा:
साइट:http://auth.local/
:
<?php
// Get the request.
// Validate the session.
// Pass a Secure Hash and log the user in to the main domain.
?>
साइट: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/");
साइट: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/");
प्रश्न के उत्तर देखें कैसे करें PHP के साथ सिंगल साइन-ऑन? अधिक जानकारी के लिए।