In my Apache server I want to make this redirection : everything that comes in this directory (this is not the server root) that is not a file should be passed as arguments to the real_location/index.php front controller (this is a Symfony2 project).
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ./(.*) ./real_location/index.php/$1 [QSA,L]
</IfModule>
If someone gets a clue I am most interested.
try this:
It should work ! (and $_GET is given)
Cheers