nginx yaf需要注意的问题
Posted newmiracle宇宙
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx yaf需要注意的问题相关的知识,希望对你有一定的参考价值。
nginx yaf需要注意的问题
显示视图的方法
<pre>
$this->getView()->assign(array(‘pack‘=>$return[‘pack‘],‘appid‘=>$return[‘appid‘]));
$this->display(‘index‘);
</pre>
nginx配置文件
<pre>
index index.php index.html index.htm;
if (!-e $request_filename) {
rewrite ^/(.*) /index.php?$1 last;
}
</pre>
官方文档是错的 这里修复下
ps:还有控制器和文件夹名字不要一样 不然访问优先访问文件夹 然后再访问控制器的
以上是关于nginx yaf需要注意的问题的主要内容,如果未能解决你的问题,请参考以下文章