aboutsummaryrefslogtreecommitdiffhomepage
path: root/.htaccess
diff options
context:
space:
mode:
authorArthurHoaro <arthur@hoa.ro>2020-10-03 12:59:01 +0200
committerGitHub <noreply@github.com>2020-10-03 12:59:01 +0200
commitee07b7283faa197fc062ed85f4f96f98e8e77b03 (patch)
treea5f87d5b472d98a2de5d578d593610297ecee3cd /.htaccess
parent1db2ebbd79bb82e9e40a7093bbf1bfc50d06b077 (diff)
parent255b2264a119f4b8cc9fe211c7740906701e15b4 (diff)
downloadShaarli-ee07b7283faa197fc062ed85f4f96f98e8e77b03.tar.gz
Shaarli-ee07b7283faa197fc062ed85f4f96f98e8e77b03.tar.zst
Shaarli-ee07b7283faa197fc062ed85f4f96f98e8e77b03.zip
Merge pull request #1574 from stoeps13/hosting-fix
Diffstat (limited to '.htaccess')
-rw-r--r--.htaccess4
1 files changed, 4 insertions, 0 deletions
diff --git a/.htaccess b/.htaccess
index af2dc5a7..25fcfb03 100644
--- a/.htaccess
+++ b/.htaccess
@@ -10,8 +10,12 @@ RewriteRule ^(.git|doxygen|vendor) - [F]
10# fixes JWT token not correctly forwarded on some Apache/FastCGI setups 10# fixes JWT token not correctly forwarded on some Apache/FastCGI setups
11RewriteCond %{HTTP:Authorization} ^(.*) 11RewriteCond %{HTTP:Authorization} ^(.*)
12RewriteRule .* - [e=HTTP_AUTHORIZATION:%1] 12RewriteRule .* - [e=HTTP_AUTHORIZATION:%1]
13# Alternative (if the 2 lines above don't work)
14# SetEnvIf Authorization .+ HTTP_AUTHORIZATION=$0
13 15
14# REST API 16# REST API
17# Ionos Hosting needs RewriteBase /
18# RewriteBase /
15RewriteCond %{REQUEST_FILENAME} !-f 19RewriteCond %{REQUEST_FILENAME} !-f
16RewriteCond %{REQUEST_FILENAME} !-d 20RewriteCond %{REQUEST_FILENAME} !-d
17RewriteRule ^ index.php [QSA,L] 21RewriteRule ^ index.php [QSA,L]