So, I\'m running xampp on Windows. I\'m currently trying to get familiar with the laravel framework. Now, when thats pointed out. How can i be able to access my laravel appl
Easiest way is create .htaccess file in your Laravel root with following content:
.htaccess
RewriteEngine On RewriteRule ^(.*)$ public/$1 [L]
It should be redirected easily.
Reference: https://coderwall.com/p/erbaig/laravel-s-htaccess-to-remove-public-from-url