I have a quick issue. I am trying to use Laravel for the first time. To do so, I\'m using Wamp. And I don\'t know if this is important, but I set the DocumentRoot of wamp at thi
Assuming that you want to reach your Laravel site at: http://localhost/LaravelSite/
You can either use an alias in your httpd.conf
file:
Alias /LaravelSite/ "C:/Users/Bebop/Documents/Site Internet/Sites/LaravelTest/public/"
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
or, create a symbolic link under command-prompt with the following:
mklink /D "C:\Users\Bebop\Documents\Site Internet\Sites\LaravelSite" "C:\Users\Bebop\Documents\Site Internet\Sites\LaravelTest\public"`