aboutsummaryrefslogtreecommitdiffstats
path: root/.htaccess
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2024-01-05 11:06:08 +0000
committerMario <mario@mariovavti.com>2024-01-05 11:06:08 +0000
commitce0e8d74973cdb24c20f3f29b5ac84a58200fa92 (patch)
tree8aba5fbfba525e65f8f510cea0abfe5770bd6dd2 /.htaccess
parent852678e238eaa28199640b4b2a856e53d707ca24 (diff)
downloadvolse-hubzilla-ce0e8d74973cdb24c20f3f29b5ac84a58200fa92.tar.gz
volse-hubzilla-ce0e8d74973cdb24c20f3f29b5ac84a58200fa92.tar.bz2
volse-hubzilla-ce0e8d74973cdb24c20f3f29b5ac84a58200fa92.zip
update apache rewite rule to fix issue with recent apache versions - issue #1822
Diffstat (limited to '.htaccess')
-rw-r--r--.htaccess4
1 files changed, 2 insertions, 2 deletions
diff --git a/.htaccess b/.htaccess
index 3420313a5..3bd779541 100644
--- a/.htaccess
+++ b/.htaccess
@@ -25,10 +25,10 @@ AddType audio/ogg .oga
# in CGI mode.
RewriteCond %{REQUEST_URI} ^/\.well\-known/.*
- RewriteRule ^(.*)$ index.php?q=$1 [E=REMOTE_USER:%{HTTP:Authorization},L,QSA]
+ RewriteRule ^(.*)$ index.php?q=$1 "[E=REMOTE_USER:%{HTTP:Authorization},L,QSA,B= ?]"
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
- RewriteRule ^(.*)$ index.php?q=$1 [E=REMOTE_USER:%{HTTP:Authorization},L,QSA]
+ RewriteRule ^(.*)$ index.php?q=$1 "[E=REMOTE_USER:%{HTTP:Authorization},L,QSA,B= ?]"
</IfModule>