I have a first.php page with
first.php
header(\"Location: script/script1.php\")
and script1.php has another
script1.php
have a try with this:
header("Location: ../first.php")
or use an absolute path or url instead.
Explanation: .. is the unix/linux expression used for 'parent directory'. The Internet is unix land, so that rules applies there too.
..