1.添加伪静态规则
- RewriteRule ^(.*)/xmspace-(\w+)-([0-9]+)\.html(\?(.*))*$ $1/forum\.php\?mod=forumdisplay&fid=$2&filter=typeid&typeid=$3&$5
复制代码
代码中 xmspace 这个可以根据自己的爱好来设置(后面需要使用到,请记住你的设置)。
2. 打开这个文件 /source/module/forum/forum_forumdisplay.php
查找以下代码:
- if($_G['forum']['threadtypes']['prefix'] == 1) {
- $thread['typehtml'] = '<em>[<a href="forum.php?mod=forumdisplay&fid='.$_G['fid'].'&filter=typeid&typeid='.$thread['typeid'].'">'.$_G['forum']['threadtypes']['types'][$thread['typeid']].'</a>]</em>';
复制代码
修改为:
- if($_G['forum']['threadtypes']['prefix'] == 1) {
- $thread['typehtml'] = '<em>[<a href="xmspace-'.$_G['fid'].'-'.$thread['typeid'].'.html">'.$_G['forum']['threadtypes']['types'][$thread['typeid']].'</a>]</em>';
复制代码
4.替换同名文件 更新缓存 完成 |