Answers for "laravel link public folder"

PHP
9

laravel link storage to public

php artisan storage:link
Posted by: Guest on March-13-2020
0

laravel apache public folder

//Laravel -> Jump to /public by default
//On the root file create an htaccess file with this data:
RewriteEngine On
RewriteCond %{REQUEST_URI} !^/public/
RewriteRule ^(.*)$ /public/$1 [L,QSA]
Posted by: Guest on April-17-2021

Code answers related to "laravel link public folder"

Browse Popular Code Answers by Language