#<IfModule mod_rewrite.c>
#    RewriteEngine On
#    RewriteRule    ^$    public/    [L]
#    RewriteRule    (.*) public/$1    [L]
# </IfModule>

 <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^(.*)$ routing.php?qs=$1 [QSA,L]
</IfModule>