centos安装配置ZF2框架(apache服务器)

  1. 首先把安装包下载下来

wget https://github.com/zendframework/ZendSkeletonApplication/releases/tag/release-2.2.7

    

   2.  然后进行解压和进入解压文件夹

tar zxvf release-2.2.7
cd ZendSkeletonApplication-release-2.2.7


   3.  进入之后,通过composer来进行更新和安装了

php composer.phar self-update
php composer.phar install


   4.  安装好之后,如果文件夹vendor下有zendframework文件夹,那就代表安装成功了,就可以通过地址访问到zend设定的主页了。由于我觉得路径太长,直接把文件列表提取到根目录下的子目录了,比如我访问http://www.surjur.com/Zend/public就可以看到主页了


   5.  然后对httpd.conf进行配置,在httpd.conf文件中加入以下代码

<VirtualHost *:80>
    ServerName zf2-tutorial.localhost
    DocumentRoot /path/to/zf2-tutorial/public
    SetEnv APPLICATION_ENV "development"
    <Directory /path/to/zf2-tutorial/public>
        DirectoryIndex index.php
        AllowOverride All
        Order allow,deny
        Allow from all
    </Directory>
</VirtualHost>


  6.  最后一步重启服务器就可以了

service httpd restart


你可能感兴趣的:(centos,zendframework2)