使用 nginx 为 hmvc 结构设置 Codeigniter

Posted

技术标签:

【中文标题】使用 nginx 为 hmvc 结构设置 Codeigniter【英文标题】:Codeigniter setup with nginx for hmvc stucture 【发布时间】:2019-05-13 03:50:36 【问题描述】:

任何人都可以用 nginx 为 hmvc 结构完成 Codeigniter 设置吗? 请帮助我,我尝试在 nginx 上设置 codeigniter HMVC 结构。但失败了很多次。请提出一些配置方法。

我正在使用 php7.0-fpm。

我的 nginx 配置文件是

server 
listen 80;
root /var/www/html/salsetrack;
index index.html index.htm index.php;
server_name local.sales-track.com;

location / 
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
#try_files $uri $uri/ =404;
index index.html index.php;
  try_files $uri $uri/ @handler;
  expires 30d;
 

# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000

location ~ \.php$ 
try_files $uri =404; 
#Include Nginx’s fastcgi configuration
include /etc/nginx/fastcgi.conf;
#Look for the FastCGI Process Manager at this location 
fastcgi_pass unix:/run/php/php7.0-fpm.sock;

include fastcgi_params;
 fastcgi_param PATH_INFO $fastcgi_path_info;
 fastcgi_index index.php;
 fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;



location @handler 
      rewrite / /index.php;

【问题讨论】:

你的服务器操作系统是什么? centOS? 没有。这是 ubuntu。 你知道第 3 行的错字吗?根 /var/www/html/ salsetrack; 是的,知道。 【参考方案1】:

你可以参考https://www.nginx.com/resources/wiki/start/topics/recipes/codeigniter/为codeigniter配置nginx。

【讨论】:

对不起朋友,这是 Codeigniter 会话的问题。感谢您的回复。

以上是关于使用 nginx 为 hmvc 结构设置 Codeigniter的主要内容,如果未能解决你的问题,请参考以下文章

Codeigniter 模块化扩展 HMVC 不会加载视图

带有 Wiredesignz HMVC 路由的 CodeIgniter

CLI 中的 Codeigniter HMVC:未进入控制器

什么是 HMVC 模式?

插入批处理,如果在Codeigniter 3 HMVC中有重复的密钥更新

Rails 3中的分层MVC?