博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Yii2 Start Process and File Loading
阅读量:5157 次
发布时间:2019-06-13

本文共 1387 字,大约阅读时间需要 4 分钟。

目录


Set Nginx

server {        listen       80;        server_name  www.test.com/mysticbinary/ ;        root   "D:\ProgramFiles\phpstudy\PHPTutorial\WWW\A";   # the `/A` file must hava `index.php`        location / {            index  index.php index.html index.htm;            #nginx ignore index.php            if (!-e $request_filename){                rewrite ^/(.*) /index.php last;              }            }        location ~ \.php(.*)$ {            fastcgi_pass   127.0.0.1:9000;            fastcgi_index  index.php;            fastcgi_split_path_info  ^((?U).+\.php)(/?.+)$;            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;            fastcgi_param  PATH_INFO  $fastcgi_path_info;            fastcgi_param  PATH_TRANSLATED  $document_root$fastcgi_path_info;            include        fastcgi_params;        }}

Set index.php

# ...require_once(FRAMEWORK_PATH . '/yii.php');$config = $strDir . '/../config/yii_app_config.php';$app = Yii::createWebApplication($config);# ...

Set yii_app_config.php

Autoloading model and component classes.

# ...    'import' => array(        'application.components.*',        'ext.api.*',        'ext.phpconnectpool.*',        'ext.exception.*',        'ext.rongconfig.*',        'Youseleve.Redis.*',        'Xxx.Db.*',# ...

the Xxx is the name you define.

转载于:https://www.cnblogs.com/mysticbinary/articles/11014682.html

你可能感兴趣的文章
《玩转D语言系列》一、通过四个版本的 Hello Word 初识D语言
查看>>
破译实践
查看>>
星星评分
查看>>
validform 一行代码完成所有验证
查看>>
工作中上的一点思考
查看>>
bzoj 2440: [中山市选2011]完全平方数【莫比乌斯函数+二分】
查看>>
day17 appium环境搭建
查看>>
图的最短路径
查看>>
解决:org.apache.ibatis.binding.BindingException: Invalid bound statement (not found):
查看>>
jquery笔记
查看>>
(转载)Manacher'sAlgorithm: O(n)时间求字符串的最长回文子串
查看>>
oracle的存储过程
查看>>
oracle 11g 通过在线重定义方式修改表结构
查看>>
基于webpack模块加载,ts里对系统对象prototype的扩展
查看>>
将博客搬至CSDN
查看>>
C++包含头文件时尖括号和双引号区别
查看>>
徒手教你制作运维监控大屏
查看>>
.NET 将 .config 文件嵌入到程序集
查看>>
ASP.NET Core & Docker & Jenkins 零基础持续集成实战
查看>>
获得控件的屏幕坐标
查看>>