nginx下discuz! x3 伪静态的配置内容

发布时间:2019-09-23编辑:脚本学堂
本文介绍下,在nginx环境中,配置discuz! x3 伪静态的方法,分享下配置内容,供大家学习参考。

本节内容:
nginx下配置discuz! x3 伪静态。

可以按如下三个步骤来实现:

步骤1,在nginx配置文件中,添加:
 

复制代码 代码示例:
rewrite ^([^.]*)/topic-(.+).html$ $1/portal.php?mod=topic&topic=$2 last;
rewrite ^([^.]*)/article-([0-9]+)-([0-9]+).html$ $1/portal.php?mod=view&aid=$2&page=$3 last;
rewrite ^([^.]*)/forum-(w+)-([0-9]+).html$ $1/forum.php?mod=forumdisplay&fid=$2&page=$3 last;
rewrite ^([^.]*)/thread-([0-9]+)-([0-9]+)-([0-9]+).html$ $1/forum.php?mod=viewthread&tid=$2&extra=page%3D$4&page=$3 last;
rewrite ^([^.]*)/group-([0-9]+)-([0-9]+).html$ $1/forum.php?mod=group&fid=$2&page=$3 last;
rewrite ^([^.]*)/space-(username|uid)-(.+).html$ $1/home.php?mod=space&$2=$3 last;
rewrite ^([^.]*)/blog-([0-9]+)-([0-9]+).html$ $1/home.php?mod=space&uid=$2&do=blog&id=$3 last;
rewrite ^([^.]*)/(fid|tid)-([0-9]+).html$ $1/index.php?action=$2&value=$3 last;
rewrite ^([^.]*)/([a-z]+[a-z0-9_]*)-([a-z0-9_-]+).html$ $1/plugin.php?id=$2:$3 last;
if (!-e $request_filename) {
 return 404;
}

步骤2,登录discuz! x3的后台管理,打开SEO设置界面,勾选URL 静态化里边的复选框

步骤3,重启nginx,使伪静态配置生效:
 

复制代码 代码示例:
# service nginx restart