I just wanted to try out Symfony 5 for my own education, so I followed the instructions here.
symfony check:requirements
shows that I have the requirements needed to run the application (I'm running Windows 10 with php 7.3.4 running via php-cgi.exe)
I created the project by running symfony new my_project_name
then, as per the instructions, cd into the project directory and run symfony server:start
The command line output says
[OK] Web server listening
The Web server is using PHP CGI 7.3.4
https://127.0.0.1:8000
But when I open the local IP address at port 8000 in my browser, I see an HTTP request as raw text, not the expected welcome page or even a 404 page.
Can anyone advise as to why the standard Symfony 5 startup instructions would not be producing the expected output and whether there's something more I need to configure to get the expected output?