I have made a web API using the PHP phalcon framework which is running perfectly on localhost. But when I upload it to a Linux server it's not working. I think it's because of my .htaccess
file.
Can you take look? My .htaccess
file looks like this:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^((?s).*)$ index.php?_url=/$1 [QSA,L]
</IfModule>