刚才装完discuz,但是chrome浏览器怎么都打不开首页。
其实是nginx规则定义的问题。
server { listen 80; server_name xxx.xxx.com; index index.html index.htm index.php; ...... }
discuz的默认主页是forum.php这个文件,但是在nginx的主页格式定义里却没有这个文件名,所以将index这一行添加forum.php即可。修改后的格式如下:
index forum.php index.html index.htm index.php;