Win7下安装yaf框架(之EasyPHP)

PHP集成环境

EasyPHP v12.1 WITH PHP 5.4.6
http://down.chinaz.com/soft/32993.htm

EasyPHP多站点配置

配置httpd.conf
站点配置
 <VirtualHost *:80>
     ServerAdmin [email protected]
     DocumentRoot "E:\www\vendback"
     ServerName www.yaf.com
     ServerAlias www.yaf.com
#     ErrorLog "logs/dummy-host.127.0.0.1-error.log"
#     CustomLog "logs/dummy-host.127.0.0.1-access.log" common
</VirtualHost>

目录访问权限配置
<Directory "E:/www">
   Options Indexes FollowSymLinks
   AllowOverride All
        Order deny,allow
        Allow from all
	Require all granted
</Directory>

安装yaf扩展

下载yaf 扩展
https://code.google.com/p/yafphp/downloads/detail?name=php_yaf-2.2.9-x86-5.4.x-zts-nodebug.dll

未完待续

你可能感兴趣的:(Win7下安装yaf框架(之EasyPHP))