I have url public/l/img/logo.png
and i want to look at public/img/logo.png
using htaccess in my public directory.
I tried using this but it doesn't work
RewriteRule ^l/(.*)$ $1 [R=301,L]
My present htaccess
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</IfModule>
and my public is real directory Thanks in advance