Answers for "how to point the htaccess to public folder in laravel on server"

PHP
0

laravel project htaccess redirect to public path

//In your Root directory create a file .htaccess and write it

RewriteEngine on
RewriteCond %{REQUEST_URI} !^public
RewriteRule ^(.*)$ public/$1 [L]
Posted by: Guest on May-08-2021

Code answers related to "how to point the htaccess to public folder in laravel on server"

Browse Popular Code Answers by Language