RewriteEngine On
# Ensure that the RewriteBase is set to the correct path (use `/` if at the root, or adjust if inside a subdirectory).
RewriteBase /
# Redirect all requests to the public directory
RewriteCond %{REQUEST_URI} !^/public/
RewriteRule ^(.*)$ /public/$1 [L] Back to Directory