# ============================================================
# Rename this file to ".htaccess" (with the leading dot, no .txt)
# and place it at the ROOT of public_html — ONLY if you used
# METHOD 3 in DEPLOY_INSTRUCTIONS.txt (whole app dumped straight
# into public_html with no subfolder).
#
# If public_html already has a .htaccess file, ADD these lines to
# it instead of replacing it.
# ============================================================

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