Maison >développement back-end >tutoriel php >Ubuntu16.04下apt-get安装nginx+php,根目录访问php文件,显示404
浏览器访问phpinfo.php文件,显示404错误,php版本为7.0
浏览器访问phpinfo.php文件,显示404错误,php版本为7.0
在nginx的配置文件nginx.conf中的server{}段加入
<code>location / { try_files $uri $uri/ /index.php?$query_string; }</code>
重启nginx试试