Remove Public from URL LARAVEL

DO
Instead, you should create an .htaccess file in your root like this:

RewriteEngine On
RewriteCond %{REQUEST_URI} !^/public/
RewriteRule ^(.*)$ /public/$1 [L,QSA]

https://stackoverflow.com/questions/28364496/laravel-5-remove-public-from-url

Post a Comment

Previous Post Next Post