You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
684 B
ApacheConf
23 lines
684 B
ApacheConf
2 years ago
|
<IfModule mod_rewrite.c>
|
||
|
RewriteEngine On
|
||
|
# May be required to access sub directories
|
||
|
#RewriteBase /
|
||
|
|
||
|
# Deny access to internal dirs and files by passing the URL to Pico
|
||
|
RewriteRule ^(config|content|vendor|CHANGELOG\.md|composer\.(json|lock|phar))(/|$) index.php [L]
|
||
|
RewriteRule (^\.|/\.)(?!well-known(/|$)) index.php [L]
|
||
|
|
||
|
# Enable URL rewriting
|
||
|
RewriteCond %{REQUEST_FILENAME} !-f
|
||
|
RewriteCond %{REQUEST_FILENAME} !-d
|
||
|
RewriteRule ^ index.php [L]
|
||
|
|
||
|
<IfModule mod_env.c>
|
||
|
# Let Pico know about available URL rewriting
|
||
|
SetEnv PICO_URL_REWRITING 1
|
||
|
</IfModule>
|
||
|
</IfModule>
|
||
|
|
||
|
# Prevent file browsing
|
||
|
Options -Indexes -MultiViews
|