现在越来越多的站点采用框架开发,其中zendframework在php开发框架中有着举足轻重的位置。
第一步,打开apache的rewrite模块,因为在UBUNTU下使用apache必须执行这一步:
第二步,安装Zend Framework 系统会自动安装依赖包,包括bin还有php5-cli。成功安装后Zend库的位置位于/usr/share/php/libzend-framework-php目录下。
第三步,配置include_path路径信息。
第四步,使用zf命令创建web应用。
第五步,配置apache关于本项目的信息。
zftest.conf。文件内容:
复制代码代码如下:
<IfModule alias_module>
Alias /zftest "/home/”xxx“/ZFTest/public/" <Directory "/home/”xxx“/ZFTest/public/"> Allow from all RewriteEngine on RewriteBase /zftest RewriteCond %{REQUEST_FILENAME} !-f RewriteRule !\.(css|js|jpg|gif|png|swf|flv)$ index.php Options FollowSymlinks MultiViews AllowOverride All </Directory> </IfModule>
第六步,修改public里的.htaccess文件。
复制代码代码如下:
RewriteEngine On
RewriteBase /zftest RewriteCond %{REQUEST_FILENAME} -s [OR] RewriteCond %{REQUEST_FILENAME} -l [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^.*$ - [NC,L] RewriteRule ^.*$ index.php [NC,L]
第七步,重启apache服务器
访问http://127.0.0.1/zftest显示: |