Getting IIS to behave like Apache

What I do with all my websites is this /filename.php/blah/blah/blah/ then parse the REQUEST_URI in the php.

I was able to do it in apache because Apache checks for blah/ then blah/ so on until it reaches filename.php.

IIS is not doing that. If blah/ is not found it reports a 404.

Is there a way to make it do what I want it to do?

I'm not a big fan of URL Rewriting so I'd like to avoid that. Is there any way for me to write an ISAPI filter that does it?

I know that I can set the 404 in IIS to the script and have the script read the query string but I find that a bit ugly.

 

 

 

 

Top