码迷,mamicode.com
首页 > Web开发 > 详细

PHP 框架Phalcon 问题记录

时间:2014-12-22 22:33:47      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:

1.问题:用官方的例子,首页可以正常打开,但比如说 /signup,contact/index 这样的连接都是出现404 file not find,这样的错误。以上问题在Apache web server是好的。

解决方法:URL重写导致。直接访问 localhost/index.php?_url=/控制器名/方法名. 如:  /index.php?_url=/signup

 

 

Nginx rewrite:

try_files $uri $uri/ @rewrite;
 
        location @rewrite {
            rewrite ^/(.*)$ /index.php?_url=/$1;
        }
去掉index.php:
if ($request_filename !~ (js|css|images|robots/.txt|index/.php.*) ) {
            rewrite ^/(.*)$ /index.php/$1 last;
            break;
        }

PHP 框架Phalcon 问题记录

标签:

原文地址:http://www.cnblogs.com/cobble/p/4178976.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!