首页 > 代码库 > PHP 框架Phalcon 问题记录
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
;
}
PHP 框架Phalcon 问题记录
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。