打开Discuz!根目录下source\class\helper\helper_seo.php文件
找到如下代码:
public static function strreplace_strip_split($searchs, $replaces, $str) { $searchspace = array('((\s*\-\s*)+)', '((\s*\,\s*)+)', '((\s*\|\s*)+)', '((\s*\t\s*)+)', '((\s*_\s*)+)'); $replacespace = array('-', ',', '|', ' ', '_'); return trim(preg_replace($searchspace, $replacespace, str_replace($searchs, $replaces, $str)), ' ,-|_'); } |
修改$replacespace数组里的值,如果是“论坛 – 某某网址”,那么只需要将”-“改为带前后空格的” – “就好了。