discuz打不开首页的解决办法

刚才装完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; 
0 0 投票数
文章评分
订阅评论
提醒

0 评论
内联反馈
查看所有评论