<IfModule mod_rewrite.c>
RewriteEngine On
# Specify the base folder for the application
RewriteBase /doctor-assistant/
# Redirect everything to the public folder
RewriteCond %{REQUEST_URI} !^/doctor-assistant/public/
RewriteRule ^(.*)$ /doctor-assistant/public/$1 [L]
</IfModule>
Back to Directory