thinksaas是一個輕量級的開源社區(qū)系統(tǒng),是一個可以用來搭建討論組,bbs和圈子的社區(qū)系統(tǒng)。
江陰人就是采用的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;
}
}
編輯注:經(jīng)小編初步測試,此規(guī)則適用于最新的thinksaas v1.85,七種偽靜態(tài)形式通用。