您好,
我是一个新手,现在已经设置了一个带有nginx和codeigniter的服务器。这是我的nginx配置文件,它在某种程度上有效。当我输入https://example.com/index.php时,我相信找到了codeigniter的index.php,因为显示了codeigniters routes.php的默认类。但我的问题是,当我将URL附加到URL时,它不起作用,例如:https://example.com/index.php/myclass/myfunction。
我不确定在哪里检查?是nginx配置还是codeigniters index.php中的错误?但我没有改变index.php中的任何内容。
这是问题这个问题的正确位置,还是应该去其他地方?我完全被困在这里,无法在书籍或谷歌搜索中找到任何好的提示。
感谢您抽出宝贵时间!
服务器{
listen 80;
server_name = example.com;
charset utf-8;
access_log /var/log/nginx/log/weapp-access.log main;
error_log /var/log/nginx/log/weapp-error.log;
root /data/release/php-weapp-demo;
index index.php index.html index.htm;
location / {
try_files $uri $uri/ /index.php/$request_uri;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php$ {
fastcgi_pass unix:/var/run/php-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}