1

我试图弄清楚如何告诉 Netbeans 在项目运行时加载我的 public_html 文件夹内的索引文件,但我不知道如何去做。

资料来源:http ://screencast.com/t/kWMCRKOWOo

在此处输入图像描述

运行配置:http ://screencast.com/t/SqZTN7Pu

在此处输入图像描述

编辑 :

任何人都可以扩展下面的答案吗?看到我的两个屏幕截图的任何其他想法。

4

2 回答 2

2
  1. 在项目资源管理器中右键单击项目。
  2. 单击Properties
  3. Run Configurations在类别部分下选择。
  4. 更新Project url&Index file字段。
  5. 完毕 !:)

如果不正确,请在来源类别下更新Project folder& 。Source folder

于 2013-07-19T19:49:32.033 回答
1

你可以通过 localhost 只运行里面的文件

 http://localhost/WrestlingManager/index.php

并且映射到

 C:\xampp\htdocs\WrestlingManager\index.php

这就是您在运行配置中设置的内容。

如果您可以在浏览器中运行(例如),这很容易。

 http://localhost/WrestlingManager/public_html/index.php

如果您想从其他位置运行文件。您的文件夹中必须有该文件夹server conf file

Alias /public_html = "C:/Netbeans/Projects/PhpApp1/public_html"

从我的 Apache httpd.conf

Alias /samples "D:/mysamples/xysamples"
<Directory "D:/mysamples/xysamples">
   Options Indexes FollowSymLinks MultiViews ExecCGI
   Order allow,deny
    Allow from all
</Directory>

现在我能 :http:/localhost/samples

我看不到public_htmlNetbeans 项目中文件夹的真实路径。

在运行配置中,您可以设置

  • 项目网址: http://localhost/WrestlingManager/public_html/
  • 索引文件:index.php
于 2013-07-21T02:04:40.050 回答