Pico/.htaccess

24 lines
741 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
2015-05-25 11:51:18 +00:00
#RewriteBase /
# Deny access to internal dirs and files by passing the URL to Pico
RewriteRule ^(config|content|content-sample|lib|vendor)(/|$) index.php [L]
RewriteRule ^(CHANGELOG\.md|composer\.(json|lock|phar))(/|$) index.php [L]
RewriteRule (^\.|/\.)(?!well-known(/|$)) index.php [L]
# Enable URL rewriting
2015-05-25 11:51:18 +00:00
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^ index.php [L]
2015-08-28 16:37:36 +00:00
<IfModule mod_env.c>
# Let Pico know about available URL rewriting
2015-08-28 16:37:36 +00:00
SetEnv PICO_URL_REWRITING 1
</IfModule>
2012-04-04 13:45:09 +00:00
</IfModule>
# Prevent file browsing
Options -Indexes -MultiViews