you can make a vhost in apache !
<VirtualHost *:80>
ServerName myapp.test
DocumentRoot "/path/to/folder/myapp/public"
<Directory "/path/to/folder/myapp/public">
</Directory> </VirtualHost>AllowOverride all
Then you make a entry in your host file :
127.0.0.1 myapp.test
this should do the trick !
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community