how to Mod-rewrite php + Slim url to sub-directory
问题 I am using Slim 2.4 and php 5.3. My Directory Structure in localhost is something like this : Web Root AppName API v1 include Slim <- Slim Framework tools .htaccess (#1) index.php (#1) Assets css js img .htaccess (#2) index.php (#2) I wan to access localhost/AppName/v1 that will open up localhost/AppName/API/v1 . This is working partially as further parameters are getting ignored. When I am trying to get localhost/AppName/v1/anyOtherVariable it opens up localhost/AppName/API/v1 only. Now, #1