CodeIgniter 的 Nginx 重写规则

Posted

技术标签:

【中文标题】CodeIgniter 的 Nginx 重写规则【英文标题】:Nginx rewrite rule for CodeIgniter 【发布时间】:2013-10-21 06:07:48 【问题描述】:

这里是英文规则:

除 index.php、assets 文件夹、文件夹和 robots.txt 之外的任何 HTTP 请求都被视为对 index.php 文件的请求。

我有一个.htaccess 文件在 Apache 服务器上可以正常工作:

RewriteCond $1 !^(index\.php|assets|files|robots\.txt)
RewriteRule ^(.*)$ index.php/$1 [L]

这条规则的一些正确结果:

example.com = example.com/index.php

example.com/index.php/welcome = example.com/welcome

example.com/assets/css/main.css != example.com/index.php/assets/css/main.css

我尝试了一些工具将 htaccess 规则转换为 nginx 规则,但都不正确。

通过http://winginx.com/htaccess(缺少资产文件夹的例外规则...):

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

通过http://www.anilcetin.com/convert-apache-htaccess-to-nginx/($1 值错误):

if ($1 !~ "^(index.php|assets|files|robots.txt)")
    set $rule_0 1$rule_0;

if ($rule_0 = "1")
    rewrite ^/(.*)$ /index.php/$1 last;

我该如何解决这个问题?调试规则真的很难。

到目前为止,这是我的 nginx 配置:

server 
    listen       80;
    server_name  www.example.com example.com;

    location / 
        try_files $uri $uri/ /index.php?/$request_uri;
    

    location ~ \.php$ 
        root           html;
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  /var/www/html$fastcgi_script_name;
        include        fastcgi_params;
    

    location ~ /\.ht 
        deny  all;
    

【问题讨论】:

你的codeigniter目录的根路径和完整路径是什么? 【参考方案1】:

您想改为这样做:

if ($request_uri !~ ^/(index\.php|assets|files|robots\.txt)) 
    rewrite ^/(.*)$ /index.php/$1 last;

$request_uri 用于客户端的原始 URI 请求。如果您希望在其他 Nginx 重写规则处理完之后的 URI 请求,那么您将使用$uri。但是,对于您正在尝试做的事情,您想要做的事情就是您想要做的事情。

此外,您需要使用反斜杠转义特殊的正则表达式字符,例如 .

【讨论】:

这似乎是正确的,但不起作用。以下是一些案例的结果:example.com - 404、example.com/index.php - OK、example.com/assets/css/main.css - 404。无论如何我可以调试规则吗? @Letomkov 用你的 Nginx 配置文件的内容更新你的问题。 我将我的 nginx 配置文件添加到我的问题中。我尝试用您当前的问题替换 location / ... 规则,但没有成功。 我错过了我刚刚发现的配置中的一些内容。您的规则是正确的,但它必须与我的 location / 规则一起使用。但是如果你请求assets文件夹中不存在的文件,它仍然需要加载index.php文件。【参考方案2】:

您可以将其添加到您的配置中:

location ~* ^/(assets|files|robots\.txt)  

这将与您的 location / 规则一起正常工作。

您的配置还需要添加根文档和默认索引文件。

...
root /ftp/wardrobe;
index index.php index.html index.htm;

location / 
    try_files $uri $uri/ /index.php?/$request_uri;


location ~* ^/(assets|files|robots\.txt)  
...

【讨论】:

我可以加载带有或不带有 index.php 的页面,但仍然无法加载 assets 文件夹中的文件 error_log /var/log/nginx/localhost.error_log debug; rewrite_log on; 添加到您的配置中,重新启动服务器然后尝试在资产文件夹中加载文件。如果您发现任何错误,请告诉我。 我怎么会出错:open() "/etc/nginx/html/assets/..." failed (No such file or directory)?该规则缺少帮助 nginx 路由到正确 Web 目录的内容? 你错过了root $your_document_root; 您应该考虑将$request_uri 替换为$uri,因为后者是标准化的(参见nginx.org/en/docs/http/ngx_http_core_module.html#variables)。为此,您还需要更改正则表达式过滤 .php 文件处理,因为您目前无法处理 Letomkov 提供的 try_files 的后一种情况。请参阅mezcalito.fr/hebergement/labo-single/2011/01/… 以获得更可接受的解决方案【参考方案3】:

请试试这个。它对我有用。

server 
    server_name domain.tld;

    root /var/www/codeignitor;
    index index.html index.php;

    # set expiration of assets to MAX for caching
    location ~* \.(ico|css|js|gif|jpe?g|png)(\?[0-9]+)?$ 
        expires max;
        log_not_found off;
    

    location / 
        # Check if a file or directory index file exists, else route it to index.php.
        try_files $uri $uri/ /index.php;
    

    location ~ \.php$ 
        try_files $uri =404;
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        fastcgi_pass unix:/var/run/php5-fpm.sock;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include fastcgi_params;
    

【讨论】:

以上是关于CodeIgniter 的 Nginx 重写规则的主要内容,如果未能解决你的问题,请参考以下文章

将规则重写为 Zeus 服务器规则 (Codeigniter)

codeigniter nginx rewrite规则配置转

Codeigniter 索引控制器路由问题

Codeigniter重写URL用斜杠替换问号

特定位置的 nginx 重写规则

[转帖]Nginx 重写规则指南