在Admin模块模板里使用include引用Index模块模板文件head.html:
<include file="Index/head" />
本地:认为是Index模块的head.html 正常打开
file_get_contents(./Tpl/index/head.html)
SAE:认为是Admin模块的Index/head.html 找不到文件
file_get_contents(./Tpl/Admin/index/head.html)
解决办法:
<include file="Index:head" />