Diary of problems and solutions related to web programming, database development and related technologies and platforms.

Running Laravel project using Local Server Routes

Alternative 1:

Go to laravel project. Lets say
C:/>cd wamp/www/laravelproject

Type the following command to run the laravel project using local server routes
C:/wamp/www/laravelproject>php -S localhost:8888 -t public

Open a brower and enter the following URL on address bar
http://localhost:8888

Alternative 2:

To start the project at localhost:8000, run the following lines of command
C:/wamp/www/laravelproject>php artisan serve

No comments :

Post a Comment