对Laravel项目使用PhpStorm内置Web服务器会导致“ 404未找到”错误

时间:2018-08-07 07:58:41

标签: php laravel routing phpstorm built-in-web-server

我有以下问题。我开始使用Laravel框架,正在使用PhpStorm IDE。

如果我使用PHP内置的网络服务器,一切都可以正常工作。我在cmd中执行以下命令:

C:\phpProjects\project03>php -S localhost:8000 -t public

在此本地服务器上一切正常。我可以在浏览器中访问该项目。欢迎页面在浏览器中与http://localhost:8000/一起使用,而测试路由“ foo”(即简单的“ Hello World”)与http://localhost:8000/foo一起使用。

但是我不想手动启动测试服务器。这就是为什么我要使用PhpStorm的内置网络服务器。

“欢迎页面”在http://localhost:63342/project03/上可以正常使用,但是我想通过http://localhost:63342/project03/foo访问的所有其他路由(如“ foo”)都会导致“ 404 Not Found PhpStorm 2018.2”错误。

有人知道这个问题可能是什么吗?

0 个答案:

没有答案