weblog

技術的なメモ置き場。

ディレクトリ構成

Zend Frameworkの標準的なディレクトリ構成
htmlディレクトリを公開ディレクトリとする。
htmlディレクトリには、以下の2つのファイルのみを配置する。
index.php ・・・ フロントコントローラの役割
.htaccess ・・・ すべてのリクエストをindex.phpに渡す

.htaccessファイルの内容
RewriteEngine on
RewriteBase /
RewriteRule !¥.(js|ico|gif|jpg|jpeg|png|css|swf|html)$ index.php