用了一天的时间在修改destoon的静态规则,把其中的一些技巧说出来,让后来者少走路因为destoon要付费用户才给予技术支持。规则文件:api/url.inc.php先看一下我们要实现的要求:/news/guoji/prefix-title-itemid.html1、guoji======分类名catdir,问题是:在内容页无法获取catdir的值,解决方法:首先打开include/global.func.php查找itemurl 修改:$cate = get_cat($catid); $catdir = $cate['catdir'];2、取标题首字母加载函数:function getfirstchar($s0){ $fchar = ord($s0{0}); if($fchar >= ord(“A”) and $fchar <= ord(“z”) )return strtoupper($s0{0}); $s1 = iconv(“UTF-8″,”gb2312″, $s0); $s2 = i...