I've been searching for a while, and hopefully you have some suggestions I could try. So I have aRESTful service written in PHP using CodeIgniter and REST Server library. URL rewriting works perfect, and any request is always served by my index.php file. However, whenever I make a request with aDELETE method I'm presented with an HTTP Error 404.0 - Not found.
I've been using Microsoft Webmatrix to develop and debug this RESTservice, as well as to deploy it to Windows Azure. Requested URL is correctly mapped fromhttp://localhost:12345/session to http://localhost:12345/index.php/session; however, the physical access route reported by the error is C:\<Path to my project>\index.php\session which I believe is not correct. Other HTTP methods work as expected.
Thanks in advance.