Nginx环境下magento2实行静态化的方法

location / {
        index index.html index.php; ## Allow a static html file to be shown first
        try_files $uri $uri/ @handler; 
        expires 30d;
    }

    location /var/export/ { ## Allow admins only to view export folder
        auth_basic           "Restricted"; ## Message shown in login window
        auth_basic_user_file htpasswd; ## See /etc/nginx/htpassword
        autoindex            on;
    }
      location  /. { ## Disable .htaccess and other hidden files
        return 404;
    }

    location @handler { ## Magento uses a common front handler
        rewrite / /index.php;
    }

    location ~ .php/ { ## Forward paths like /js/index.php/x.js to relevant handler
        rewrite ^(.*.php)/ $1 last;
    }

給TA打賞
共{{data.count}}人
人已打賞
服務器運維

Nginx环境下安装Cloudreve实行静态化的方法

2019-7-18 1:50:22

服務器運維

nginx.1.15.9 宝塔小白版本一键编译云锁安全模块

2019-7-18 6:26:09

0 Reply AAuthor MManager
    暫無討論,說說你的看法吧
搜索