EasyPhp 和 Netbeans - 如何配置项目以正常运行 .php-s
我遇到以下问题: 屏幕图像
NetBeans 项目配置为使用 localhost (http://127.0.0.1:8888/Php_alapok/)
但如果我只想在浏览器中运行 Alapok.php 文件 (http://127.0.0.1:8888/Php_alapok/Alapok.php)
,然而这是不可能的! 因为浏览器总是邀请index.php或您在屏幕图像上看到的页面。 我怎样才能让浏览器中只运行 Alapok.php,而不运行 index.php?
我使用最新的 NetBeans IDE 和 EasyPhp。
I have the following problem: screen image
The NetBeans project configure to use the localhost (http://127.0.0.1:8888/Php_alapok/)
but if I want to only the Alapok.php file run in the browser (http://127.0.0.1:8888/Php_alapok/Alapok.php)
,however it not possible! Because the browser always invites the index.php or that page that you see on the screen image.
How can I aim that only the Alapok.php run in the browser, and don't the index.php?
I use the newest NetBeans IDE and EasyPhp.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首选方法是使用运行菜单中的运行文件(默认情况下为Shift+F6),同样适用仅调试当前文件。
如果没有找到index.php,您还可以配置Apache来查找Alapok.php。通过将 Alapok.php 添加到 httpd.conf 中的
DirectoryIndex
指令来完成此操作。这样,当您按运行项目时,您应该能够执行Alapok.php。要调试项目,您还应该在 NetBeans 项目配置中将 Alapok.php 设置为索引文件。Preferred way will be to use Run file from Run menu (Shift+F6 by default), same goes for debugging only current file.
You can also configure Apache to look for Alapok.php if no index.php was found. Do it by adding Alapok.php to the
DirectoryIndex
directive in httpd.conf. This way you should be able to execute Alapok.php when yuo press Run project. To debug project you should also set Alapok.php as Index file in NetBeans project configuration.