第一步:HTTP服务器设置XiunoBBS 伪静态设置规则:将 .htm 转发到 index.php?.htm Nginx在nginx配置文件的server节点下新增如下内容:location ~* \.(htm)$ { rewrite "^(.*)/(.+?).htm(.*?)$" $1/index.php?$2.htm$3 last; } 修...
第一步:HTTP服务器设置XiunoBBS 伪静态设置规则:将 .htm 转发到 index.php?.htm Nginx在nginx配置文件的server节点下新增如下内容:location ~* \.(htm)$ { rewrite "^(.*)/(.+?).htm(.*?)$" $1/index.php?$2.htm$3 last; } 修...
XiunoBBS 只需要一条规则:将 .htm 转发到 index.php?.htm 即可。Xiuno BBS 4.0 需要编辑 conf/conf.php编辑 'url_rewrite_on'=>1,清空 tmp 目录Nginx:打开 nginx 配置文件 /usr/local/nginx/conf/nginx.conf 找到对应的虚拟主机配置处,追加加粗行:location ~*...
比如我想将https://xiunobbs.cn/thread-259.htm改为https://xiunobbs.cn/paly-259.html修改index.inc.php 第60行 case 'thread': include _include(APP_PATH.'route/thread.php'); break; 和 view/htm/thread_list.i...