.Htaccess to remove public from laravel app
create a .htaccess file in the root of your project and paste the following code in the file. RewriteEngine on RewriteCond %{REQUEST_URI} !^public RewriteRule ^(.*)$ public/$1 [L] And you are...
love to code