views\..\publish\index.tpl.htm
views\..\publish\article.tpl.htm
查看里面的相关链接发现
<?php if (get_setting('integral_system_enabled') == 'Y') { ?><a href="/integral/rule/" target="_blank">[<?php _e('积分规则'); ?>]</a><?php } ?>
多了一个/
改为
<?php if (get_setting('integral_system_enabled') == 'Y') { ?><a href="integral/rule/" target="_blank">[<?php _e('积分规则'); ?>]</a><?php } ?>
就好了