index.php 包含一些模块页面,_head.tpl,_foot.tpl
索引.php:
<{include file="_head.tpl"}>
....
<php?
....
?>
<{include file="_footer.tpl"}>
_head.tpl
<html>
<head></head>
<body>
<{include file="$baseUrl/menu/index"}>
.....
打开网址时:www.test.com/index 显示“http 500 错误”
打开网址:www.test.com/menu/index可以获得动态内容。将列表的内容复制到“_head.tpl”而不是聪明的句子(<{include file="$baseUrl/menu/index"}>),“ www.test.com/index ”显示得很好。