欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

ci的url,加上通道口文件和不加入口文件,为啥差别这么大

程序员文章站 2022-06-05 20:05:23
...
ci的url,加上入口文件和不加入口文件,为啥差别这么大?
本帖最后由 q309056448 于 2015-11-10 00:32:06 编辑 http://aa.baidu.dd/index.php/fdsafdeeee/index/1.html
http://aa.baidu.dd/index.php/joifdafdfdsan/index/1.html
http://aa.baidu.dd/index.php/feppppoin/indefdasfdax/1.html
无论写啥都跑到默认home控制器了,哪怕是index.php后面的控制器不存在。
但是只要去掉index.php,就没问题了,指哪打哪,这是神马原因
下面是我在nginx中的虚拟机配置:

server {
listen 80;
server_name aa.baidu.dd;
index index.php;
client_max_body_size 5M;
client_body_buffer_size 128k;

charset utf-8;
location / {
root /var/www/baidu/wx;
index index.php;
if (!-e $request_filename)
{
rewrite ^/(.*)$ /index.php/$1 last;
break;
}
}
error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}

location ~ .+\.php($|/){
set $script $uri;
set $path_info "/";
if ($uri ~ "^(.+\.php)(/.+)")
{
set $script $1;
set $path_info $2;
}
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /var/www/baidu/wx$fastcgi_script_name;
include fastcgi_params;
}
}

------解决思路----------------------
rewrite ^/(.*)$ /index.php/$1 last;
ci的url,加上通道口文件和不加入口文件,为啥差别这么大

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。

相关文章

相关视频


网友评论

文明上网理性发言,请遵守 新闻评论服务协议

我要评论
  • ci的url,加上通道口文件和不加入口文件,为啥差别这么大
  • 专题推荐