在此服务器PHP上找不到请求的资源/

时间:2016-06-30 13:30:09

标签: php server localhost

我使用php -S localhost:8080在cmd上运行php服务器,如下所示:

enter image description here

我在打开localhost时遇到了这个问题:

enter image description here

我该怎么办?

6 个答案:

答案 0 :(得分:20)

根文件夹中缺少index.php。谢谢大家。

答案 1 :(得分:5)

当您的路径与公用文件夹中的目录同名时,也会发生此错误:

文件routes.php

中路径的定义
<div class="choice" asp-active="Model.Active"></div>

公用文件夹

enter image description here

答案 2 :(得分:0)

使用另一个名称保存错误刀片文件,并使用该名称设置路由。            例如:

 index.blade.php save welcome.blade php

路线:

Route::get('/welcome', function () {
    return view('welcome');
});

答案 3 :(得分:0)

在轨道上,

def index

end 

在您的控制器中。

如果没有,请重新启动计算机,一切正常

答案 4 :(得分:0)

error resolved image

我亲自解决了此错误,方法是将文件名放在 http://0.0.0.0:3000/hello.php这样,您可以在上图中看到结果

答案 5 :(得分:0)

我在错误的目录中运行php -S localhost:8002时遇到了同样的问题。

Project/src/->导致错误

Project/src/public->已解决