7

这是英语的规则:

除 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;
    }
}
4

3 回答 3

12

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

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) { }
...
于 2013-10-14T04:31:56.550 回答
2

你想这样做:

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

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

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

于 2013-10-13T17:07:00.040 回答
1

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

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;
    }
}
于 2015-03-25T06:12:28.667 回答