解压完后我们来配置Apache中的httpd.conf文件,进行编辑,由于•模块的打开是配合使用.htaccess对目录访问的限制mod_rewrite,因此 我们找到#LoadModulerewrite_module modules/mod_rewrite.so 这行并将前面的"#"去掉。
.htaccess
如果你直接把这些内容添加到httpd.conf,你必须重启网页服务器。但如果你用.htaccess文件,则什么都不必做
去除Windows环境下include_path前的 “;”去掉
并且修改include_path的值等于 zend framework解压后的 library路径
; UNIX:"/path1:/path2"
;include_path = ".:/php/includes"
; Windows:"\path1;\path2"
include_path =".;D:\library"
<?php require "Zend/Date"; $date=new Zend_Date(); echo $date; ?>