12345678910111213141516171819202122 |
- <IfModule mod_rewrite.c>
- RewriteEngine On
-
-
-
-
- RewriteRule ^(config|content|vendor|CHANGELOG\.md|composer\.(json|lock|phar))(/|$) index.php [L]
- RewriteRule (^\.|/\.)(?!well-known(/|$)) index.php [L]
-
-
- RewriteCond %{REQUEST_FILENAME} !-f
- RewriteCond %{REQUEST_FILENAME} !-d
- RewriteRule ^ index.php [L]
-
- <IfModule mod_env.c>
-
- SetEnv PICO_URL_REWRITING 1
- </IfModule>
- </IfModule>
-
-
- Options -Indexes -MultiViews
|