Skip to content

Instantly share code, notes, and snippets.

View om-mahato's full-sized avatar
💭
Technical Lead ✨

Om Mahato om-mahato

💭
Technical Lead ✨
View GitHub Profile
@om-mahato
om-mahato / htaccess_to_redirect_all_to_public.txt
Created August 2, 2020 13:51
Apache .htaccess file to redirect all trafic to public folder
#.htaccess
RewriteEngine On
RewriteBase /My-Project/
RewriteCond %{THE_REQUEST} /public/([^\s?]*) [NC]
RewriteRule ^ %1 [L,NE,R=302]
RewriteRule ^((?!public/).*)$ public/$1 [L,NC]