Loading
0

海洋CMS/seacms程序Nginx下伪静态规则

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

location / {
    rewrite ^/frim/index(.+?)\.html$ /list/index.php?$1 last;
    rewrite ^/movie/index(.+?)\.html$ /detail/index.php?$1 last;
    rewrite ^/play/([0-9]+)-([0-9]+)-([0-9]+)\.html$ /video/index.php?$1-$2-$3 last;
    rewrite ^/topic/index(.+?)\.html$ /topic/index.php?$1 last;
    rewrite ^/topiclist/index(.+?).html$ /topiclist/index.php?$1 last;
    rewrite ^/index\.html$ index.php permanent;
    rewrite ^/news\.html$ news/ permanent;
    rewrite ^/part/index(.+?)\.html$ /articlelist/index.php?$1 last;
    rewrite ^/article/index(.+?)\.html$ /article/index.php?$1 last;
}

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

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