batufa/example.htaccess

22 lines
524 B
Plaintext
Raw Normal View History

2008-12-09 20:39:54 +02:00
# Turn on URL rewriting
RewriteEngine On
# Installation directory
RewriteBase /kohana/
# Protect hidden files from being viewed
<Files .*>
Order Deny,Allow
Deny From All
</Files>
# Protect application and system files from being viewed
2010-05-03 10:26:58 +03:00
RewriteRule ^(?:application|modules|system)\b.* index.php/$0 [L]
2008-12-09 20:39:54 +02:00
# Allow any files or directories that exist to be displayed directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Rewrite all other URLs to index.php/URL
RewriteRule .* index.php/$0 [PT]