禅道安装
2710使用nginx配置禅道安装完成后进入index.php页面提示页面存在重定向循环已解决
使用nginx配置禅道安装完成后进入index.php页面提示页面存在重定向循环已解决
悬赏5积分
提问者李图答案数1阅读数15980发表时间2015-03-09 23:14:12
使用nginx配置禅道安装完成后进入index.php跳转至xxxx:8666/user-login-L2luZGV4Lmh0bWw=.html提示页面存在重定向循环
以下是nginx配置文件
server {
listen 8666;set $root_dir /home/work/zentaopms/www;
location = / {
root $root_dir;
rewrite ^/(.*) /index.php last;
}
location / {
root $root_dir;
if (-d $request_filename) {
return 403;
}
if (!-e $request_filename) {
rewrite ^/(.*) /index.php last;
}
}
location ~* \.php$ {
root $root_dir;
fastcgi_pass 127.0.0.1:11000;
fastcgi_param SCRIPT_FILENAME $document_root/$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_script_name;
include fastcgi_params;
fastcgi_connect_timeout 30s;
fastcgi_send_timeout 30s;
fastcgi_read_timeout 300s;
}
location ~* ^/protected {
return 403;
}
}
禅道版本:7.0.stable
安装包类型:源码包
操作系统:CentOS
客户端浏览器:Chrome
答案列表
联系我们
联系人
杨苗/高级客户经理
电话(微信)
13165050229
QQ号码
2692096539
联系邮箱
yangmiao@chandao.com

其他相关问答
提问者: 2596473251 于 2016-05-174083次浏览,1个答案
提问者: panda_xiaoyu 于 2021-06-171029次浏览,2个答案
提问者: lfw 于 2012-09-203719次浏览,1个答案
提问者: zx424714 于 2017-10-056283次浏览,1个答案
提问者: qq_60a5c03a5ef1c 于 2021-05-201022次浏览,1个答案


精品资料包
1V1产品演示
免费试用增强功能
专属顾问答疑支持


