1

I use an old laravel lumen 5.8 and tried to make a route like :

http://localhost:8001/url/api/v1

and its working fine, but when I want to make route like

http://localhost:8001/url/api/v1.0

its return some error, i think this is on xampp / apache / php level because when we input the wrong endpoint with env debug=true, laravel will return error as normally laravel error page. But this route return error like enter image description here

Hans
  • 61
  • 10

1 Answers1

0

as mentioned here This is a limitation on PHP's built-in server, not with Lumen

It works fine on a real web server, and then I use xampp as my local web server and access the route like this :

http://localhost/project-folder/public/url/api/v1.0
Hans
  • 61
  • 10