Hi. I'm using this code within a PHP document to redirect to another PHP doc.
$tempURL = "www.../000default/default_eng.php";
header("Location: $tempURL");
the first PHP doc is called default.php
After this page has redirected to www.../000default/default_eng.php and this page has loaded, www.../default.php still show in address bar of browser and when I want to add page to my favourites the address that is added is www.../default.php
How can I get the right page:
www.../000default/default_eng.php
to show up in addressbar in browser after the redirection has taken place?