默认配置下,lnmp是解析php5后缀的,如果你的程序并没有使用php5后缀名,最好去掉。 找到以下配置段 - location ~ .*\.(php|php5)?$
- {
- try_files $uri =404;
- fastcgi_pass unix:/tmp/php-cgi.sock;
- fastcgi_index index.php;
- include fcgi.conf;
- }
默认是匹配php与php5结尾的,去掉php5后缀的匹配,只匹配php的。 - location ~ .*\.php$
- {
- try_files $uri =404;
- fastcgi_pass unix:/tmp/php-cgi.sock;
- fastcgi_index index.php;
- include fcgi.conf;
- }
|