XiunoBBS Nginx伪静态规则
XiunoBBS是一款非常流行的轻论坛程序
以下为XiunoBBS Nginx伪静态规则代码,添加到相应的nginx配置文件中即可。
location ~* \.(htm)$ {
rewrite "^(.*)/(.+?).htm(.*?)$" $1/index.php?$2.htm$3 last;
}
XiunoBBS是一款非常流行的轻论坛程序
以下为XiunoBBS Nginx伪静态规则代码,添加到相应的nginx配置文件中即可。
location ~* \.(htm)$ {
rewrite "^(.*)/(.+?).htm(.*?)$" $1/index.php?$2.htm$3 last;
}