<IfModule mod_rewrite.c>
    RewriteEngine On
    
    # Silently rewrite all incoming requests to the public_html folder
    RewriteRule ^(.*)$ public_html/$1 [L]
</IfModule>
