ThinkSAAS for Nginx 伪静态重写法则

  ThinkSAAS是一个轻量级的开源社区系统,是一个可以用来搭建接头组,bbs和圈子的社区系统。

  江阴人就是回收的ThinkSAAS措施。

  把下面代码存为thinksaas.conf,然后在域名设置文件(jyr.me.conf)中嵌入(include thinksaas.conf)就行了。

location / {
if (-f $request_filename/index.html){
rewrite (.*) $1/index.html break;
}
if (-f $request_filename/index.php){
rewrite (.*) $1/index.php;
}
if (!-f $request_filename){
rewrite (.*) /index.php last;
}
}

  编辑注:经小编劈头测试,此法则合用于最新的ThinkSAAS v1.85,七种伪静态形式通用。

  本文转自:

分享到

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/9983.html