Discuz!官方免费开源建站系统

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[求助] ucenter图片加载不出来

[复制链接]
luerking 发表于 2016-7-25 20:51:15 | 显示全部楼层 |阅读模式

看地址栏的网址,感觉是地址被重定向了,每次加载地址,都会在前边多加一个   admin.php/   不是很懂这个,不知道怎么设置,希望高手指导下,服务器用的是nginx
下面是conf的设置,网址做了处理
#
# The default server
#
server {
    listen 80;
    server_name uc.ABC.com;

    index index.html index.htm index.php;

    root  /data/wwwroot/uc;

    #error_page   404   /404.html;

    access_log /data/logs/uc.log;

    location / {
        index index.php index.html index.htm;
    }

    location ~ .*\.php
    {
        fastcgi_param PATH_INFO $fastcgi_script_name;
        fastcgi_pass  127.0.0.1:9000;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME  /data/wwwroot/uc$fastcgi_script_name;
        include  fastcgi_params;
    }

    location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ {
        expires      30d;
    }

    location ~ .*\.(js|css)?$ {
        expires      12h;
    }
}



本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
 楼主| luerking 发表于 2016-7-28 19:55:46 | 显示全部楼层
已经解决,下面一段修改下就好了
location ~ .*\.php
    {
        fastcgi_pass  127.0.0.1:9000;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME  /data/wwwroot/uc$fastcgi_script_name;
        include  fastcgi_params;
    }
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|Discuz! 官方站 ( 皖ICP备16010102号 )star

GMT+8, 2024-11-22 15:37 , Processed in 0.017801 second(s), 3 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

快速回复 返回顶部 返回列表