Hi
I'm trying to transfer site with php scripting from Apache to IIS and have such problem:
Script has such code. For example in the file index.php
<?PHP
header("Location: /some_dir/some_file.php");
?>
On the Apache server this code works ok, and browser redirected on the page http://site/some_dir/some_file.php
But on the IIS it stays on the page http://site/index.php, but loads page from /some_dir/some_file.php . Sure there are on this page other relative links, became bad.
Is there any way to resolve it?
Thanks