一般清理下文件夹下 temp 缓存目录
其他还有conf的conf.php,关闭插件等。
伪静态设置
XiunoBBS 只需要一条规则:
将 *.htm* 转发到 index.php?*.htm* 即可。
Xiuno BBS 4.0 需要编辑 conf/conf.php
1. 编辑 ‘url_rewrite_on’=>1,
2. 清空 tmp 目录
Nginx:
打开 nginx 配置文件 /usr/local/nginx/conf/nginx.conf 找到对应的虚拟主机配置处,追加加粗行:
location ~* \.(htm)$ {
rewrite "^(.*)/(.+?).htm(.*?)$" $1/index.php?$2.htm$3 last;
}
然后重新启动
service nginx restart