&reftitle.examples;
一个典型的应用目录结构
入口文件
顶层目录下的 index.php 是整个应用的唯一入口,应该把所有请求都重定向到这个文件(在 Apache + php_mod 模式下可以使用 .htaccess)。
bootstrap() //call bootstrap methods defined in Bootstrap.php
->run();
?>
]]>
重写规则
"/index.php/$1",
)
}
]]>
应用配置文件
默认控制器
_view->word = "hello world";
//or
// $this->getView()->word = "hello world";
}
}
?>
]]>
默认视图文件
Hello World