我是否必须告诉 IIS 我的 pdt PHP 项目在哪里,还是应该由 Eclipse/PDT 完成?
我一直在阅读文档并测试我能做什么。
我已经安装了 PHP、Eclipse + PDT、IIS 设置等 - 我相当确定它们都已设置并且应该可以工作。
现在我创建一个 PHP 项目,添加一个 newfile.php,基本代码如下:
<?php
echo "hello";
现在我右键单击该文件,运行为 ->网页,我收到 404。Eclipse
尝试启动 http://localhost:80/Php1/newfile。 php
IIS 没有虚拟或物理目录,因此请求失败。
Eclipse/PDT 应该完成这个映射吗?或者我需要这样做吗?或者我应该在 c:\inetpub\wwwroot 下创建我的项目
I've been reading through the docs and testing out what i can.
I've installed PHP, Eclipse + PDT, IIS settings etc. - I'm reasonably sure they are all set and should work.
Now I create a PHP Project, add a newfile.php, basic code like :
<?php
echo "hello";
Now I right click the file,Run as -> Web Page and i get a 404.
Eclipse has tried to launch http://localhost:80/Php1/newfile.php
IIS has no virtual or physical directory so the request fails.
Should Eclipse/PDT have done this mapping? Or do I need to? or should I create my projects under c:\inetpub\wwwroot
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Eclipse / PDT 不会为您配置 Web 服务器。看起来好像假设您的文档根目录是您的工作空间,因此如果您愿意,您可以将所有项目放在 wwwroot 中。不过,只要这些文件对 IIS 可见,您就不需要使用“运行方式”对话框。
就我个人而言,我喜欢为每个项目创建一个虚拟主机,或者使用符号链接将项目目录引入 wwwroot。
Eclipse / PDT does not configure your webserver for you. It looks like it's assuming that your document root is your workspace, so you could put all your projects in your wwwroot if you wanted to. You don't need to use the Run As dialog though, as long as the files are somehow visible to IIS.
Personally I like to either make a vhost per project, or use symlinks to bring the project directories into the wwwroot.