PhalconPHP教程的Nginx配置

时间:2015-10-28 03:11:51

标签: nginx phalcon

我正在尝试使用PhalconPHP框架教程设置ngnix,他们提供了以下结构:

教程/ htaccess的

RewriteEngine on
RewriteRule ^$ public/ [L]
RewriteRule (.*) public/$1 [L]

教程/公共/ htaccess的

AddDefaultCharset UTF-8
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?_url=/$1 [QSA,L]

另一个文件夹是app,其中包含以下文件夹:controllersmodelsviews。现在这个教程在apache上完美运行,但在nginx上,我尝试了不同的规则,但是没有用。我的ngnix的基本配置是:
服务器配置

server {
   listen  80;
   server_name localhost;  
   root C:/nginx/html;  
   location /tutorial {  
     rewrite ^/tutorial/(.*)$ /tutorial/public/$1 break;  
     try_files $uri $uri/ /tutorial/public/index.php?q=$uri&$args;  
   }  
   location /tutorial {  
      root C:/nginx/html;  
      index index.php;  
      rewrite ^/tutorial/(/.*)$ /public$1 break;  
      try_files $uri $uri/ /tutorial/public/index.php?$args;  
   }
}

任何人都可以帮助我在nginx上设置本教程的位置规则。我甚至在网上将这些.htaccess规则转换为nginx规则,但我不知道我错在哪里。

1 个答案:

答案 0 :(得分:1)

您似乎在nginx&中使用Windows想用phalcon
因此,您可以安装PHP - FastCGI on Windows然后使用文档here中包含的主PhalconPHP nginx配置。
可能是这样的:

server {
    listen 80;

    server_name localhost;

    index index.php index.html index.htm;

    root C:/nginx/html/tutorial/public;

    try_files $uri $uri/ @rewrite;

    location @rewrite {
        rewrite ^(.*)$ /index.php?_url=$1;
    }
    location ~ \.php$ {
       fastcgi_pass   127.0.0.1:9123;
       fastcgi_index  index.php;
       fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
       fastcgi_split_path_info       ^(.+\.php)(/.+)$;
       fastcgi_param PATH_INFO       $fastcgi_path_info;
       fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;

       include        fastcgi_params;
    }


    location ~* ^/(css|img|js|flv|swf|download)/(.+)$ {
        root C:/nginx/html/tutorial/public;
    }

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

尝试以上配置。