Bạn đang tìm kiếm Tập lệnh đăng nhập một lần sử dụng PHP. Đó là thuật ngữ bạn cần tìm kiếm. Một mô hình đơn giản sẽ là:
Trang web:http://auth.local/
:
<?php
// Get the request.
// Validate the session.
// Pass a Secure Hash and log the user in to the main domain.
?>
Trang web: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/");
Trang web: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/");
Xem câu trả lời cho câu hỏi Cách thực hiện đăng nhập một lần bằng PHP? để biết thêm thông tin.