magento 1.9 nginx 404

Posted pa200318

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了magento 1.9 nginx 404相关的知识,希望对你有一定的参考价值。

原来的nginx 配置 lnmp 环境默认的

  location ~ [^/].php(/|$)
        {
            fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
            try_files $uri =404;
            fastcgi_pass  unix:/tmp/php-cgi.sock;
            fastcgi_index index.php;
            include fastcgi.conf;
        }

  修改为

location ~ .php$
        {
            fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
            try_files $uri =404;
            fastcgi_pass  unix:/tmp/php-cgi.sock;
            fastcgi_index index.php;
            include fastcgi.conf;
        }

  想必你们知道是什么原因了吧

以上是关于magento 1.9 nginx 404的主要内容,如果未能解决你的问题,请参考以下文章

magento 1.9 上传后图片前后台无法正常显示

自定义模块的自定义布局不会在 Magento 1.9 中加载

Magento 1.9 cron运行,但停在一个方法上

如何在magento 1.9中集成条纹

magento 1.9 + 脑树

如何在magento 1.9中的cms主页滑块上显示类别?