Nginx图像错误上的SMF



http://62-210.217.242/forums/

我有所有合适的nginx conf和权限,有人能告诉我是什么导致了这个问题吗?

我试过用location /forums { try_files /forums/$uri/ /forums/$uri /forums/index.php; } 没有成功。谢谢

它似乎无法在主题文件夹中提取图像,尽管它们存在。

以下是完整的配置:

        server {
        listen 8080;
        #listen [::]:80 default_server ipv6only=on;
        root /usr/share/nginx/html;
        index index.html index.php;
        server_name localhost;
        location /forums {
        try_files /forums/$uri/ /forums/$uri /forums/index.php;
        }
        location / {
                try_files $uri $uri/ /index.php;
        }
        #error_page 404 /404.html;
        # redirect server error pages to the static page /50x.html
        #
        #error_page 500 502 503 504 /50x.html;
        #location = /50x.html {
        #       root /usr/share/nginx/html;
        #}
        location ~ .php$ {
                fastcgi_pass 127.0.0.1:9000;
                fastcgi_index index.php;
                include fastcgi_params;
        }
}

nginx.conf

user www-data;
worker_processes 16;
pid /run/nginx.pid;
events {
        worker_connections 5768;
        # multi_accept on;
}
http {
        ##
        # Basic Settings
        ##
        server_tokens off;
        sendfile on;
        tcp_nopush on;
        tcp_nodelay on;
        keepalive_timeout 65;
        types_hash_max_size 2048;
        # server_tokens off;
        # server_names_hash_bucket_size 64;
        # server_name_in_redirect off;
        port_in_redirect off;
        gzip on;
        gzip_types text/css text/xml text/javascript application/x-javascript;
        gzip_vary on;
        include /etc/nginx/mime.types;
        default_type application/octet-stream;
        ##
        # Logging Settings
        ##
        access_log off;
        error_log /var/log/nginx/error.log;
        include /etc/nginx/conf.d/*.conf;
        include /etc/nginx/sites-enabled/*;
}

尝试:

location /forums {
    try_files $uri $uri/ /forums/index.php;
}

$uri变量已包含/forum前缀。无需添加。

相关内容

  • 没有找到相关文章

最新更新