# /* {{{
#  * 目录访问配置文件 , 适用于apache
#  * url静态化(隐藏 index.php) , 须开启路由PHP_INFO模式
#  * @copyright reginx.com
#  */
# /* }}} */

# /* {{{ 请求转发规则
#  */
<IfModule mod_rewrite.c>
    RewriteEngine on
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^(.*)$ index.php/$1 [PT,L]
</IfModule>
# /* }}} /

# /* {{{ 静态资源缓存规则
#  */
# <FilesMatch ".(flv|gif|jpg|jpeg|png|ico|swf|css|js)$">
#   Header set Cache-Control "max-age=2592000"
# </FilesMatch>
# /* }}} /