# Repository root .htaccess.
#
# Preferred setup: point the document root of your hosting account at public/.
# If your shared host cannot do that and serves this directory instead,
# this file routes visitors into public/ and the per-directory .htaccess
# files in app/, config/ and data/ block direct access to internals.

RewriteEngine On
RewriteCond %{REQUEST_URI} !^/public/
RewriteRule ^(.*)$ public/$1 [L]
