laravel apache public folder

Solutions on MaxInterview for laravel apache public folder by the best coders in the world

showing results for - "laravel apache public folder"
David
07 Mar 2020
1//Laravel -> Jump to /public by default
2//On the root file create an htaccess file with this data:
3RewriteEngine On
4RewriteCond %{REQUEST_URI} !^/public/
5RewriteRule ^(.*)$ /public/$1 [L,QSA]