How do I specify a file redirect to a file one level above the current file in PHP? Here is my schematic so far:
-landing.html -ajax -checkLogin.php
The accepted answer will take you to the root of the domain, not 1 folder up as specified.
To go one folder up:
header("Location: ../landing.html");