PHP 框架Phalcon 问题记录

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;
        }

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。