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的主要内容,如果未能解决你的问题,请参考以下文章