batufa/.htaccess

22 lines
506 B
ApacheConf
Raw Normal View History

2008-12-09 20:39:54 +02:00
# Turn on URL rewriting
RewriteEngine On
# Installation directory
RewriteBase /
2008-12-09 20:39:54 +02:00
# Protect hidden files from being viewed
<Files .*>
2011-04-26 08:52:23 +03:00
Order Deny,Allow
Deny From All
2008-12-09 20:39:54 +02:00
</Files>
# Protect application and system files from being viewed
2011-04-26 08:52:23 +03:00
RewriteRule ^(?:application|modules|system)\b - [F,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]