切换提示什么
尝试在/www/server/nginx/conf/enable-php.conf文件中手动改一下:
/tmp/php-cgi-80.sock中80为php版本
- location ~ [^/]\.php(/|$)
- {
- try_files $uri =404;
- fastcgi_pass unix:/tmp/php-cgi-80.sock;
- fastcgi_index index.php;
- include fastcgi.conf;
- include pathinfo.conf;
- }
复制代码 |
|