Nginx+CI框架出现404错误怎么解决

Flavia ·
更新时间:2024-11-10
· 912 次阅读

最近刚学ci框架,做了个简单的项目,在本地搭服务器的环境都调通了,但是部署到远程服务器时:

http://example.com/(index.php)/ 可以访问(为配置的默认controller-class)

http://example.com/(index.php)/[controller-class]/[controller-method] 不可以访问(提示404错误!)

最后百度原因:

对于/index.php/abc这种url,Apache和Lighttpd会按”index.php?abc”来解释,而nginx会认为是请求名字是“index.php”的目录下的abc文件的内容。所以CI在nginx下不配置rewrite是无法运行的,而在Apache和Lighttpd则正常。

解决方案(要点加粗,重点标红):

代码如下:
server {
listen ;
server_name example.com;
root /data/wwwroot/example/ index index.php index.html index.htm;
location ~* \.(css|js|swf|htm|jpg|png|gif|json|atlas)?$ {
expires d;
add_header Pragma public;
add_header Cache-Control "public";
}
location /controller-class/ {
if (!-e $request_filename) {
rewrite ^/controller-class/(.*)$ /controller-class/index.php?q=$uri&$args;
}
}
location ~ \.php$ {
fastcgi_pass ...:;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PHP_VALUE open_basedir=$document_root:/tmp/:/proc/;
include fastcgi_params;
}
}

以上内容是小编给大家分享的Nginx+CI出现404错误怎么解决的相关内容,希望对大家有所帮助!

您可能感兴趣的文章:Nginx实现404页面的方法小结Nginx中404页面的配置及AJAX请求返回404页面的方法Nginx服务器中配置404错误页面时一些值得注意的地方一个等号引发的血案(谈Nginx正确的404配置)Nginx中定义404页面并且返回404状态码的正确方法PHP统计nginx访问日志中的搜索引擎抓取404链接页面路径NGINX下配置404错误页面的方法分享Nginx下Wordpress的永久链接实现(301,404等)为Nginx自定义404,502错误页面的方法NGINX服务器配置404错误页面转向的方法



ci 404错误 Nginx 404

需要 登录 后方可回复, 如果你还没有账号请 注册新账号