0

http://62-210.217.242/forums/

我拥有所有适当的 nginx 配置和权限,谁能告诉我可能导致此问题的原因?

我试过修复它但 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/*;
}
4

1 回答 1

0

尝试:

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

$uri变量已经包含/forum前缀。没有必要添加它。

于 2014-06-05T15:45:23.760 回答