nginx服务器默认是不支持pathinfo模式的,即类似index.php/index形式的url会提示404。在这里,需要对nginx配置文件中需要开启pathinfo模式的server予以修改配置,修改nginx.conf文件如下:
代码如下:
server{
server_name blog.com;
listen 80;
root /home/wwwroot/blog;
index index.php index.html index.htm;
access_log /data/log/blog.access