Report abuse

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
DirectoryIndex index.php
Options -MultiViews -Indexes +FollowSymLinks

<IfDefine APACHE2>
  AcceptPathInfo On
</IfDefine>

<IfModule rewrite_module>
  RewriteEngine On
  RewriteBase /

  # If the requested URL does not exist (it's likely an agavi route),
  # pass it as path info to index.php, the Agavi dispatch script.
  RewriteRule ^$ index.php?/ [QSA,L]
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteRule (.*) index.php?/$1 [QSA,L]
</IfModule>