My website (www.home.lan) uses SIMPLESAMLPHP and when a user logs in they authenticate against WebADM OpenID & SAML Provider..
<?php
require_once('_autoload.php');
$as = new SimpleSAML_Auth_Simple('default-sp');
$as->requireAuth();
$attributes = $as->getAttributes();
?>
takes the user to the WebADM OpenID/SAML server where they authenticate...
After they authenticate they are automatically redirected after 2 seconds back to the referring page (www.home.lan).
When a user logs off using:
it takes them to:
The screen says "Logged out from SAML SSO service" and there is a "Close" button.
When you click on the close button I just get a blank white screen. If I manually go back to www.home.lan I can see that I am successfully logged out.
How do I automatically redirect back to the original site?
Thanks,
Steve