# Project root: hide /public/ from the browser URL
<IfModule mod_rewrite.c>
	RewriteEngine On

	# /bhargavi_staging/public/login  ->  /bhargavi_staging/login
	RewriteRule ^public/(.*)$ $1 [R=301,L]

	RewriteRule ^$ public/ [L]
	RewriteRule (.+) public/$1 [L]
</IfModule>
