DirectoryIndex index.phpOptions -MultiViews -Indexes<IfDefine APACHE2>AcceptPathInfo On</IfDefine><IfModule mod_rewrite.c># enable rewrite engineRewriteEngine On# ********** THIS IS THE ONLY SETTING YOU SHOULD HAVE TO CHANGE **********RewriteBase /# e.g. RewriteBase /~dzuelke/_projects/agavi/trunk/samples/pub/# usually just "/" if your application's pub dir is the document root# if requested url does not exist (i.e. it's likely an agavi route), pass it as path info to index.phpRewriteRule ^$ index.php?/ [QSA,L]RewriteCond %{REQUEST_FILENAME} !-fRewriteCond %{REQUEST_FILENAME} !-dRewriteRule (.*) index.php?/$1 [QSA,L]</IfModule>