symfony Getting started with symfony Running the Symfony application using PHP's built-in web server

Help us to keep this website almost Ad Free! It takes only 10 seconds of your time:
> Step 1: Go view our video on YouTube: EF Core Bulk Extensions
> Step 2: And Like the video. BONUS: You can also share it!

Example

After creating a new Symfony application, you can use the server:run command to start a simple PHP web server, so you can access your new application from your web browser:

cd my_project_name/
php bin/console server:run

You can now visit http://localhost:8000/ to see the Symfony welcome page.

Important: while using the built-in web server is great for development, you should not use it in production. Use a full-featured web server such as Apache or Nginx instead.



Got any symfony Question?