www/index.php:
<?php
include '../config.php';
$config = new onrMvcConfiguration();
$dispatcher = new ezcMvcConfigurableDispatcher( $config );
$dispatcher->run();
?>
www/.htaccess:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l
RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ index.php [NC,L]
ErrorDocument 404 /error/404
php_value session.gc_maxlifetime 864000