有关使用zend framework2框架构建php应用时设置虚拟路径的问题


本人是一个php新手,刚刚接触zend framework2框架,有一个问题一直困扰我,就是每次新建一个zend2项目后,都要到apache服务器的http-vhosts.conf去写几行类似于下面的代码:


 <VirtualHost php:80>
    ServerAdmin [email protected]
    DocumentRoot "D:/Program Files/xampp/htdocs/project/php"
    ServerName php
    SetEnv APPLICATION_ENV development
   ErrorLog "logs/php.com-error.log"
   CustomLog "logs/php.com-access.log" common
</VirtualHost>

这让我很困扰,众位大神有没有一些比较方便的处理办法,在zend studio上搭建好项目后就能运行,而不用每次都去新建虚拟路径,重复写上面的代码。

希望理解菜鸟的无知,感激不尽!

PS:我是使用zend studio进行开发的,同时也是用它进行zend2项目创建的,服务器使用的是apache本地服务器。

php zend-framework2

东方D某笨蛋 10 years, 6 months ago

这是apache httpd-vhosts的配置
关键明白DocumentRoot和ServerName就行了
在hosts文件中把ServerName指向127.0.0.1你就能通过ServerName访问你的项目了

另外建议PhpStorm作为IDE比较合适

FTAL白告皓 answered 10 years, 6 months ago

Your Answer