Possible Duplicate:
symfony2 rewrite rules .htaccess app.php
I've been working with a .htaccess to remove the access to app.php from my Symfony2 project. I want users to access the project from a url like this:
But i need to remove access from this url
Right now my .htaccess let me access both address, here's my .htaccess code:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteOptions Inherit
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !^/web/shows
RewriteRule ^(.*) web/app_dev.php [QSA,L]
</IfModule>