nginx/php + zurmo,重写或内部重定向循环

nginx/php + zurmo,重写或内部重定向循环

我正在尝试在本地主机上的 Debian Jessie 系统上运行 Zurmo CRM。我找不到示例 nginx 配置,应用程序需要重写 URL,而我做错了。

我也在 drupal 上使用重写,并且我认为它的 nginx 配置可以工作,但没有成功。

server {
    server_name zurmo;
    listen 80;
    root /var/www/sites/zurmo;
    index index.php;
    location = / {
            root /var/www/sites/zurmo;
            index index.php;
    }

    location / {
            root /var/www/sites/zurmo;
            index index.php;

            if (!-f $request_filename) {
                    rewrite ^(.*)$ /index.php/$1 last;
                    break;
            }

            if (!-d $request_filename) {
                    rewrite ^(.*)$ /index.php/$1 last;
                    break;
            }
    }

    location ~ ^/(protected|framework|themes/\w+/views) {
            deny  all;
    }

    error_page 404 /index.php;

    location ~* ^.+.(jpg|jpeg|gif|css|png|js|ico)$ {
            root /var/www/sites/cyruserv;
            access_log off;
            expires 30d;
    }

    location ~ \.php$ {
            fastcgi_split_path_info ^(.|\.php)(/.+)$;

            set $fsn /index.php;

            fastcgi_pass 127.0.0.1:9000;
            fastcgi_param SCRIPT_FILENAME $document_root$fsn;
            fastcgi_param PATH_INFO $fastcgi_path_info;
            fastcgi_param PATH_TRANSLATED $document_root$fsn;

            include fastcgi_params;
    }

}

我确实根据我在 Drupal 中的使用情况对它做了一些改动。

rewrite ^(.*)$ /index.php/$1 last;

曾是

rewrite ^(.*)$ /index.php?q=$1 last;

我不确定要使用什么重写规则,在 Zurmo 文档中找不到任何内容。如果有人能帮我修复这个配置就太好了

Zurmo 将 URL 重定向到 index.php/[request_url] 我需要为其重写它们。

例如:

http://zurmo/

重定向至:

http://zurmo/app/index.php/install/default

这是我收到的错误:

2013/08/07 20:51:58 [error] 16576#0: *115 rewrite or internal redirection cycle while processing "/index.php//index.php//index.php//index.php//index.php//index.php//index.php//index.php//index.php//index.php//index.php//app/index.php/install/default", client: 127.0.0.1, server: zurmo, request: "GET /app/index.php/install/default HTTP/1.1", host: "zurmo"

相关内容