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
|
2015-08-28 16:37:36 +00:00
|
|
|
RewriteRule ^(.*)$ index.php?$1 [L,QSA]
|
2015-10-01 20:42:23 +00:00
|
|
|
RewriteRule ^(config|content|content-sample|lib|vendor)/.* - [R=404,L]
|
2015-08-28 16:37:36 +00:00
|
|
|
|
|
|
|
<IfModule mod_env.c>
|
|
|
|
SetEnv PICO_URL_REWRITING 1
|
|
|
|
</IfModule>
|
2012-04-04 13:45:09 +00:00
|
|
|
</IfModule>
|
|
|
|
|
|
|
|
# Prevent file browsing
|
2016-02-24 22:27:35 +00:00
|
|
|
Options -Indexes -MultiViews
|