Pico/.htaccess

12 lines
278 B
ApacheConf
Raw Normal View History

2015-05-25 11:51:18 +00:00
<IfModule mod_rewrite.c>
RewriteEngine On
#May be required to access sub-directories
#RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php [L]
2012-04-04 13:45:09 +00:00
</IfModule>
# Prevent file browsing
2015-05-25 11:41:08 +00:00
Options -Indexes