I've installed Piwik on the root of my Symfony2-based website (which should accessible at mywebsite.com/piwik/index.php) and I've tried to configure my .htaccess file so I can get around the 'No route found for "GET /piwik/index.php"' exception.
The problem is I am not good enough at configuring .htaccess, as a result I still get the above exception. Of course, I have to read tutorials. This is how I have tried to configure my .htaccess file:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^piwik/ - [L]
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ /app.php [QSA,L]
</IfModule>
Any suggestions ? Thanks in advance.