Hi.
Working with 'Windows Server 2003' + 'IIS 6.0' + 'PHP 4.3.11', I'd
like to use:
http://www.foo.com/script.php/john/23/
I created this 'script.php':
<?
$myUrl = $_SERVER['PATH_INFO'];
print "<li>$myUrl\n";
?>
It works OK with 'foo.com/script.php', but when trying
'foo.com/script.php/john/23/', I get this 404 error message:
The page cannot be found
The page you are looking for might have been removed, had its name
changed, or is temporarily unavailable.
Is it possible to work with these kind of scripts and IIS?
Thank you very much.