Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End Redirect PHP Query to .HTML Page Reply To: Redirect PHP Query to .HTML Page

#150214
Senff
Participant

You could try putting this in the login page (untested, just from the top of my head):

<?php

$loggedout = Request.QueryString("logout")
if ($loggedout == 1) {
    header( 'Location: http://my-site.com/logout-area.html' ) ;
    }

?>