nginx設定ファイルの書き換えの問題

nginx設定ファイルの書き換えの問題

私のクライアントはnginxとperconaサーバーを使って新しいサーバーに移動しました。問題は、URLの末尾からスラッシュが削除されたことです。参考写真 https://i.stack.imgur.com/6wTGZ.jpg

したがって、次のような設計文書JSCSSファイルが読み込まれないか、magento 404ページが見つからないというメッセージが表示され、ランダムに発生します。

データベースにスラッシュとしてweb/unsecure/base_url設定web/secure/base_urlhttp://78.137.115.47.srvlist.ukfast.net/

nginx confファイルに問題があるとします。ルールの書き換えが間違っている可能性があります。このサイトとGoogleで見つけることができるすべての方法を試しましたが、何も機能しません。他のものかもしれません。助けを求めてもいいですか?

これはドメインのnginx confファイルです。

# Uncomment the server definition below should you wish to
# redirect from punkyfish.com to www.punkyfish.com
#server {
#    listen 192.168.92.247;
#    server_name punkyfish.com;
#    #rewrite / $scheme://www.$host$request_uri permanent;
#}

#
# Change this backend name (and the socket pointer)
# as additional virtual hosts are added. This should
# point to the spawn-fcgi wrapper running as the
# appropriate user.
#
upstream punkyfishcombackend {
        server unix:/var/run/php-fcgi-punkyfishcom.sock;
}

server {
    listen 192.168.92.247:80;
    server_name punkyfish.com;
    root /var/www/vhosts/punkyfish.com/htdocs;

    location / {
        index index.html index.php;
        try_files $uri $uri/ @handler;
        expires 30d;
    }

    location /app/                { deny all; }
    location /includes/           { deny all; }
    location /lib/                { deny all; }
    location /media/downloadable/ { deny all; }
    location /pkginfo/            { deny all; }
    location /report/config.xml   { deny all; }
    location /var/                { deny all; }

    location  /. {
        return 404;
    }

    location @handler {
       rewrite / /index.php;
    }

    location ~ .php/ {
        rewrite ^(.*.php)/ $1 last;
    }

    include "ssl_offloading.inc";
    location ~ .php$ {
        if (!-e $request_filename) { rewrite / /index.php last; }

        expires        off;
        fastcgi_pass   punkyfishcombackend;
        fastcgi_param  HTTPS $fastcgi_https;
        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
#       fastcgi_param  MAGE_RUN_CODE default;
#       fastcgi_param  MAGE_RUN_TYPE store;
        include        fastcgi_params;
    }

答え1

これは、nginxがすべてをキャッシュするためです。データベースとファイルへの変更は反映されません。 ngnixキャッシュフォルダからキャッシュをクリーンアップしたところ、問題が解決しました。

ありがとうございます。

関連情報