phalcon nginx的配置问题

发布于 2022-09-05 21:41:13 字数 1105 浏览 31 评论 0

用Docker搭建phalcon的运行环境,出现点小问题, 不知道是什么情况

用phalcon官方提供的nginx配置,rewrite规则不生效, 以及网上查了很多资料,都没有用...

css, js等资源加载不正常..会出现一个奇怪的index.php

图片描述

这种事什么鬼情况,怎么改好像都没用.

配置是这样的:

server {
    listen   80;
    index index.php index.html index.htm;
    server_name www.aaa.com aaa.com;

    root /data/www/aaa/public;

    try_files $uri $uri/ @rewrite;
    location @rewrite {
        rewrite ^(.+)$ /index.php?_url=$1 last;
    }

    location ~ \.php(.*)$ {
        include fastcgi_params;
        fastcgi_pass   php-fpm:9000;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  /data/www/aaa/public/$fastcgi_script_name;
        fastcgi_param  APPLICATION_NAME zphal;
    }

    location ~ /\.ht {
        deny all;
    }
}

可以正常使用的Apache规则是这样的:

<IfModule mod_rewrite.c>
    RewriteEngine on
    RewriteRule  ^$ public/    [L]
    RewriteRule  (.*) public/$1 [L]
</IfModule>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

沧桑㈠ 2022-09-12 21:41:13

这个问题解决了..

是程序本身的URI设置和nginx的起了冲突;

之前设置的:

'baseUri'        => preg_replace('/public([\/\\\\])index.php$/', '', $_SERVER["PHP_SELF"]), 

改成URI

  'baseUri'        => '/',

就可以了(不过需要配置host或者域名);

因为我nginx的documentroot解析到了public下.

南街九尾狐 2022-09-12 21:41:13

这个应该是你在生成URL的时候不正确吧。

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文