Loading
0

discuz!论坛程序Nginx下伪静态规则

技术小学生微信公众号
腾讯云服务器大促销。
华为服务器
discuz!论坛程序Nginx下伪静态规则 请将如下规则添加到对应站点配置文件.conf文件中,添加后需重启nginx服务配置才会生效,若不会添加或添加有问题,可留言告知我们协助处理

location / {
    rewrite ^/archiver/((fid|tid)-[\w\-]+\.html)$ /archiver/index.php?$1 last;
    rewrite ^/forum-([0-9]+)-([0-9]+)\.html$ /forumdisplay.php?fid=$1&page=$2 last;
    rewrite ^/thread-([0-9]+)-([0-9]+)-([0-9]+)\.html$ /viewthread.php?tid=$1&extra=page%3D$3&page=$2 last;
    rewrite ^/space-(username|uid)-(.+)\.html$ /space.php?$1=$2 last;
    rewrite ^/tag-(.+)\.html$ /tag.php?name=$1 last;
}

技术小学生微信公众号
华为服务器
腾讯云服务器大促销。

声明:站长码字很辛苦啊,转载时请保留本声明及附带文章链接:https://blog.tag.gg/showinfo-7-35995-0.html
亲爱的:若该文章解决了您的问题,可否收藏+评论+分享呢?
上一篇:discuz!X论坛程序Nginx下伪静态规则
下一篇:织梦dedecms程序Nginx下伪静态规则