CodeIgniter 路由在 Nginx 下不起作用

bha*_*tsb 2 php codeigniter nginx

Ubuntu 16.04 通过引用thisthis 进行设置

我可以在 上看到欢迎使用 CI 页面http://x.x.x.x/index.php,但是当我添加测试控制器并转到http://x.x.x.x/index.php/test404 时我收到了 404 响应。我也没有使用域,而只是使用 IP。

/etc/nginx/nginx.conf:

user www-data;
worker_processes auto;
pid /run/nginx.pid;

events {
    worker_connections 768;
}

http {
    ##
    # Basic Settings
    ##

    sendfile on;
    tcp_nopush on;
    tcp_nodelay on;
    keepalive_timeout 2;
    types_hash_max_size 2048;

    include /etc/nginx/mime.types;
    default_type application/octet-stream;

    ##
    # SSL Settings
    ##

    ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE
    ssl_prefer_server_ciphers on;

    ##
    # Logging Settings
    ##

    access_log /var/log/nginx/access.log;
    error_log /var/log/nginx/error.log;

    ##
    # Gzip Settings
    ##

    gzip on;
    gzip_disable "msie6";

    ##
    # Virtual Host Configs
    ##

    include /etc/nginx/conf.d/;
}
Run Code Online (Sandbox Code Playgroud)

/etc/nginx/sites-available/default:

server {
    listen 80 default_server;
    listen [::]:80 default_server;

    root /var/www/html/codeigniter;

    # Add index.php to the list if you are using PHP
    index index.html index.htm index.nginx-debian.html index.php;

    server_name x.x.x.x;

    location / {
        # First attempt to serve request as file, then
        # as directory, then fall back to displaying a 404.
        try_files $uri $uri/ =404;
    }

    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    location ~ \.php$ {
        include snippets/fastcgi-php.conf;
        fastcgi_pass unix:/run/php/php7.0-fpm.sock;
    }
}
Run Code Online (Sandbox Code Playgroud)

/var/www/html/codeigniter/application/config/config.php:

$config['base_url'] = ''; //tried putting http://x.x.x.x
$config['index_page'] = 'index.php';
$config['uri_protocol'] = 'REQUEST_URI';
Run Code Online (Sandbox Code Playgroud)

尝试创建一个测试控制器:

<?php
class Test extends CI_Controller
{
    public function index()
    {
        echo "Hello World!";
    }
}
?>
Run Code Online (Sandbox Code Playgroud)

但它没有加载,我收到了 404 响应。

有任何想法吗?

bha*_*tsb 5

改变

try_files $uri $uri/ =404;
Run Code Online (Sandbox Code Playgroud)

到:

try_files $uri $uri/ /index.php;
Run Code Online (Sandbox Code Playgroud)

不太确定为什么这会解决问题,但通过反复试验发现它:https : //www.nginx.com/resources/wiki/start/topics/recipes/codeigniter/

这里有一点关于 try_files:https ://serverfault.com/questions/329592/how-does-try-files-work