框架
幸福男孩
做熊就要有个熊样
展开
-
Zend Framework中的多种跳转
1.$this->_forward($action,$controller=null,$module=null,array$params=null) 参数要至少写前两个,不然就会报错; 此跳转不会更改浏览器地址; 2.$this->_redirect($url,$options) $url通常就是'controller/action',至于后面的$options我还原创 2013-11-06 18:06:50 · 1623 阅读 · 0 评论 -
Nginx+CI 出现404错误
对于/index.php/abc这种url,Apache和Lighttpd会按”index.php?abc”来解释,而nginx会认为是请求名 字是“index.php”的目录下的abc文件的内容。所以CI在nginx下不配置rewrite是无法运行的,而在Apache 和Lighttpd则正常。 Nginx里rewrite ^/(.*)$ /index.php?$1 last;转载 2014-01-14 10:46:10 · 1244 阅读 · 0 评论