netbeans 8 不引用实际的 PHP 文件路径,当 运行 一个 PHP 文件

netbeans 8 does not refer to the actual PHP file path, when running a PHP file

我已经正确安装了php、mysql和nginx。

我能够从 Eclipse 运行 PHP 页面,即 Eclipse 打开 chrome,页面显示正确。

我将现有的 PHP 项目导入了 Netbeans。

当我尝试 运行 任何 php 页面时,netbeans 打开 chrome,但网址始终相同,而不是 php 的真实路径=29=] 文件。

为什么 netbeans 指的是相同的位置,而不是尝试 运行 从其真实路径获取文件?我该如何解决?

谢谢,

Qwerty

我找到了解决办法。

Netbeans 中的绿色 "play" 按钮不是 运行 当前文件,而是 运行 项目!这导致 eclipse 运行 项目路径而不是当前文件位置!

因此,为了运行当前文件点击"Run -> Run File"(Shift+F6),就可以了。

只需确保在"Run->Set Project Configuration -> Customize"中正确设置项目路径,然后将项目URL设置为:

http://localhost/

就是这样!

谢谢,

Qwerty