nginx yaf需要注意的问题详解程序员

nginx yaf需要注意的问题

显示视图的方法


$this->getView()->assign(array('pack'=>$return['pack'],'appid'=>$return['appid']));
$this->display('index');

nginx配置文件


index index.php index.html index.htm;

if (!-e $request_filename) {
rewrite ^/(.*) /index.php?$1 last;
}

官方文档是错的 这里修复下

ps:还有控制器和文件夹名字不要一样 不然访问优先访问文件夹 然后再访问控制器的

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/1340.html

(0)
上一篇 2021年7月15日
下一篇 2021年7月15日

相关推荐

发表回复

登录后才能评论