加载正确的索引文件

时间:2013-07-19 19:42:43

标签: php codeigniter netbeans

我正在试图弄清楚如何告诉Netbeans在项目运行时加载我的public_html文件夹里面的索引文件,我不知道该怎么做。

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

enter image description here

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

enter image description here

编辑:

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

2 个答案:

答案 0 :(得分:2)

  1. 右键单击项目资源管理器中的项目。
  2. 点击Properties
  3. 在“类别”部分下选择Run Configurations
  4. 更新Project url& Index file字段。
  5. 完成! :)
  6. 更新Project folder& Source folder也属于来源类别,如果这些不正确。

答案 1 :(得分: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

我无法在Netbeans项目中看到public_html文件夹的真实路径。

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

  • 项目网址:http://localhost/WrestlingManager/public_html/
  • 索引文件:index.php