我能够在http://x.x.x.x/index.php
上看到我对CI页面的欢迎,但是当我添加测试控制器并转到http://x.x.x.x/index.php/test
时,我收到了404响应。我也没有使用域名,而只使用IP。
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/;
}
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;
}
}
$config['base_url'] = ''; //tried putting http://x.x.x.x
$config['index_page'] = 'index.php';
$config['uri_protocol'] = 'REQUEST_URI';
尝试创建测试控制器:
<?php
class Test extends CI_Controller
{
public function index()
{
echo "Hello World!";
}
}
?>
但它没有加载,我得到了404响应。
有什么想法吗?
答案 0 :(得分:3)
改变
try_files $uri $uri/ =404;
为:
try_files $uri $uri/ /index.php;
不确定为什么这会解决问题,但通过试错引用找到它: https://www.nginx.com/resources/wiki/start/topics/recipes/codeigniter/
这里有一些关于try_files的内容: https://serverfault.com/questions/329592/how-does-try-files-work