• apache 新建虚拟机 +Zend Framework建立


    官方下载 Zend Framework

    1、LoadModule rewrite_module modules/mod_rewrite.so

    2、建立映射主机 c:\windows\system32\drivers\etc\hosts  加入 127.0.0.1 sugou

    3、建立虚拟主机

    Listen 8080 #监听端口
           <VirtualHost *:8080>
                ServerAdmin admin@sugou.local                           
                ServerName sugou      #域名 输入"http://sugou:8080/即可到达该目录
                DocumentRoot "e:/php/sugou/htdocs"   
                <Directory "e:/php/sugou/htdocs">
                     Options All
                     AllowOverride All

                     </Directory>
     php_value include_path ",;e:/php/sugou/include;e:/webservices/phpinstall/PEAR"
     php_value magic_quotes_gpc off
     php_value register_globals off
     php_value display_errors on
            </VirtualHost>    

    4、建立. .htaccess 文件

    cmd->cd 到index.php目录 键入命令 edit .htaccess 输入
               文件内容为
               RewriteEngine on
               RewriteRule !\.(js|ico|gif|bmp|jpg|png|css|xml|html|txt)$ index.php [NC]

     

    5、加载Zend Framework

          index.php

    <?php

          require_once("Zend/Loader.php"); //这里自动获取路径 总路径为 index_path+"Zend/Loader.php"

          Zend_Loader::loadClass('Zend_Controller_Front');  
          Zend_Loader::loadClass('Zend_Config_Ini');  
          Zend_Loader::loadClass('Zend_Registry');  
          Zend_Loader::loadClass("Zend_View");  
          Zend_Loader::loadClass('Zend_Db');
          echo "good information";

    ?>

  • 相关阅读:
    CI持续集成系统环境--Gitlab+Gerrit+Jenkins完整对接
    解惑|你是否为容器监控操碎了心?
    4 使用smartcar进行仿真
    1 简单的ROS机器人仿真
    1 rbx1 Kinetic 安装和测试
    2020.4.13 Resources
    2. dwa_local_planner_params.yaml 参数意义
    robotics
    PCL 点云处理
    C++异常处理解析
  • 原文地址:https://www.cnblogs.com/itgmhujia/p/1518832.html
Copyright © 2020-2023  润新知