-2

I have setup laravel 5.5 on my localhost and want to access the project directly instead of /public directory. My Current link is: http://localhost/my_laravel/public/ I Want to access as: http://localhost/my_laravel/

1 Answers1

-1

start a server using

php artisan serve

in cmd/console go to the project directory and run the above cmd.

it will run your app on http://localhost:8000

ahmad ali
  • 1,155
  • 1
  • 9
  • 17