Added by anonymous on 2008-07-28 14:09:34 Download/View
- # Turn on URL rewriting
- RewriteEngine On
- # Installation directory
- RewriteBase /kohana/
- # Allow these directories and files to be displayed directly:
- # - index.php (DO NOT FORGET THIS!)
- # - robots.txt
- # - favicon.ico
- # - Any file inside of the media/ directory
- RewriteCond $1 ^(index\.php|robots\.txt|favicon\.ico|media)
- # No rewriting
- RewriteRule ^(.*)$ - [PT,L]
- # Force urls to have ending slash
- RewriteCond %{REQUEST_URI} !(\.[a-zA-Z0-9]{1,5}|/)$
- RewriteRule (.*)$ $1/ [R=301,L]
- # Rewrite all other URLs to index.php/URL
- RewriteRule ^(.*)$ index.php?/$0 [PT,L,QSA]