##view真静态
###*实现*
* * * * *
+ 获取请求参数
>例www.example.com/index/test/name?user=root
>匹配index/test/name
+ 获取正静态位置
>public/index/test/name
+ 判断过期时间,过期载入入口文件,以重新生成
//实际写入时没有换行什么的
if (time() > . (string) (time() + $expire) ) {
require ...../bootstrap/app.php;
exit;
}
?>;



