我试图弄清楚如何告诉 Netbeans 在项目运行时加载我的 public_html 文件夹内的索引文件,但我不知道如何去做。
资料来源:http ://screencast.com/t/kWMCRKOWOo
运行配置:http ://screencast.com/t/SqZTN7Pu
编辑 :
任何人都可以扩展下面的答案吗?看到我的两个屏幕截图的任何其他想法。
我试图弄清楚如何告诉 Netbeans 在项目运行时加载我的 public_html 文件夹内的索引文件,但我不知道如何去做。
资料来源:http ://screencast.com/t/kWMCRKOWOo
运行配置:http ://screencast.com/t/SqZTN7Pu
编辑 :
任何人都可以扩展下面的答案吗?看到我的两个屏幕截图的任何其他想法。
Properties
。Run Configurations
在类别部分下选择。Project url
&Index file
字段。如果不正确,请在来源类别下更新Project folder
& 。Source folder
你可以通过 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_html
Netbeans 项目中文件夹的真实路径。
在运行配置中,您可以设置
http://localhost/WrestlingManager/public_html/