dedecms如何指定模板htm后缀为html?很多人都说碰到这个问题,其实是模板文件后缀名所引起的,按以下方法可以解决问题:修改:include/arc.archives.class.php 556行:// if (!preg_match("#.htm$#", $tmpfile)) return FALSE;if (!preg_match("#.htm$#", $tmpfile) && !preg_match("#.html$#", $tmpfile)) return FALSE;