在Windows 7上的netbeans 8.1中设置php开发环境

时间:2017-08-28 06:06:00

标签: php netbeans vhosts ampps

我在PHP工作,希望使用Ampps在Windows 7的Netbeans 8.1中将源代码添加为现有项目。

我已设置虚拟主机并编辑了hosts文件以创建本地站点www.mysite.com。这是代码段

httpd-vhosts.conf文件

<VirtualHost 127.0.0.1:80>
  <Directory "c:/program files/ampps/www/mysite/www">
    Options FollowSymLinks Indexes
    AllowOverride All
    Order deny,allow
    allow from All
  </Directory>
ServerName www.mysite.com
ServerAlias www.mysite.com
ScriptAlias /cgi-bin/ "c:/program files/ampps/www/mysite/www/cgi-bin/"
DocumentRoot "c:/program files/ampps/www/mysite/www"
ErrorLog "C:/Program Files/Ampps/apache/logs/www.mysite.com.err"
CustomLog "C:/Program Files/Ampps/apache/logs/www.mysite.com.log" combined
</VirtualHost>

主持文件

  

127.0.0.1 www.mysite.com

现在,当我在运行配置步骤中使用现有源在Netbeans中设置项目时,项目URL显示为http:\ localhost \ www。我希望这是www.mysite.com。怎么做?

任何帮助表示感谢。

Create project from existing source

图像显示项目URL为http:\ localhost \ www.If它被更改然后显示项目URL无效,如下所示

Invalid Project

1 个答案:

答案 0 :(得分:0)

创建新项目

添加项目网址,如果不需要,请删除索引文件文本。

enter image description here

已创建项目

右键单击项目,然后选择属性。在左侧选项卡中选择运行配置。编辑项目URL,如下面的屏幕截图所示。 enter image description here