CI 在nginx中出现404错误的解决方式
因为你的nginx配置的是截取.php文件后缀的访问转发到PHP-CGI,而index.php和index.php/是不一样的。。 你在nginx里面写一句:
if (!-e $request_filename) { rewrite ^.*$ /index.php last; } //出现的问题 用这个解决了,
NGINX 默认不支持 PATH_INFO 模式,需要修改NGINX配置 让NGINX 来解析 index.php/controller/f 这种模式 具体配置:
#CI server { listen 80; server_name www.ci.com; index index.php index.html index.htm; root "/servers/apps/CI"; location ~ \.php{ fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; ##########################################pathinfo 模式 set $path_info ""; set $real_script_name $fastcgi_script_name; if ($fastcgi_script_name ~ "^(.+?\.php)(/.+)$"){ set $real_script_name $1; set $path_info $2; } include fastcgi.conf; fastcgi_param SCRIPT_FILENAME $document_root$real_script_name; fastcgi_param SCRIPT_NAME $real_script_name; fastcgi_param PATH_INFO $path_info; ##########################################nginx支持pathinfo 模式的重点 } }
本文转载自: https://www.cnblogs.com/hubing/p/3984002.html 非常感谢这位开发者,解决了我的问题。
更多阅读
- Debian Gtk-Message: Failed to load module “canberra-gtk-module”(已解决)
- 华为手机丢了或被盗了怎么办 教你找回来
- 2017年百度新算法: “闪电算法”上线,3秒打不开的网页将被无情打压
- 宇秀-搜索引擎下拉推荐营销系统6.487464增加任务数定制标签
- 百度UEditor-KityFormula for wordpress 2.0.2发布
- java递归遍历获取目录下所有文件
- google chrome for linux 最新版下载地址
- debian varnish service is masked 解决办法
- nginx服务器屏蔽网络爬虫程序采集器的办法
- 2020最新可用的免费ip接口,支持浏览器获取和程序调用