diff options
author | ArthurHoaro <arthur@hoa.ro> | 2018-07-28 11:07:55 +0200 |
---|---|---|
committer | ArthurHoaro <arthur@hoa.ro> | 2018-07-28 11:07:55 +0200 |
commit | 83faedadff76c5bdca036f39f13943f63b27e164 (patch) | |
tree | 6f44cede16ec6a60f10b9699e211e0818f06d2c8 /.htaccess | |
parent | 1d9eb22a3df85b67fe6652c0876cd7382c2fb525 (diff) | |
parent | 658988f3aeba7a5a938783249ccf2765251e5597 (diff) | |
download | Shaarli-83faedadff76c5bdca036f39f13943f63b27e164.tar.gz Shaarli-83faedadff76c5bdca036f39f13943f63b27e164.tar.zst Shaarli-83faedadff76c5bdca036f39f13943f63b27e164.zip |
Merge tag 'v0.9.7' into stable
Release v0.9.7
Diffstat (limited to '.htaccess')
-rw-r--r-- | .htaccess | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.htaccess b/.htaccess new file mode 100644 index 00000000..7ba4744b --- /dev/null +++ b/.htaccess | |||
@@ -0,0 +1,16 @@ | |||
1 | # Disable directory listing | ||
2 | Options -Indexes | ||
3 | |||
4 | RewriteEngine On | ||
5 | |||
6 | # Prevent accessing subdirectories not managed by SCM | ||
7 | RewriteRule ^(.git|doxygen|vendor) - [F] | ||
8 | |||
9 | # Forward the "Authorization" HTTP header | ||
10 | RewriteCond %{HTTP:Authorization} ^(.*) | ||
11 | RewriteRule .* - [e=HTTP_AUTHORIZATION:%1] | ||
12 | |||
13 | # REST API | ||
14 | RewriteCond %{REQUEST_FILENAME} !-f | ||
15 | RewriteCond %{REQUEST_FILENAME} !-d | ||
16 | RewriteRule ^ index.php [QSA,L] | ||