.htaccess ForceType returning 404 Not Found
- by woody993
I have a .htaccess file which contains:
<FilesMatch "^api$">
ForceType application/x-httpd-php
SetHandler application/x-httpd-php
</FilesMatch>
This works on my local server but not on my actual host. When I try to access http://www.domain.com/api/path/info it just returns 404 Not Found, the output on my local server is $_SERVER['PATH_INFO'] and looks like it should. How do I resolve this issue at my host?