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