禅道安装
2710
使用nginx配置禅道安装完成后进入index.php页面提示页面存在重定向循环已解决 悬赏5积分
提问者李图
答案数1
阅读数15638
发表时间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
答案列表
🍟 config/my.php 中将requestType => GET 你的url重写规则有问题。
回复
|
联系我们
联系人
刘斌/高级客户经理
电话(微信)
17685869372
QQ号码
526288068
联系邮箱
liubin@chandao.com