I know very little about symfony framework. I copied a website www.example.net to www.example.com site works with url
www.example.com/www/app.phpor even with
www.example.com/www/but I want it to redirect automatically to app.php without showing it in the url. My htaccess in the www (web) directory is as follows:
<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^(.*)$ app.php [QSA,L]
<IfModule>
It doesn't redirect.
Thanks
 
     
     
    