diff options
author | Mario <mario@mariovavti.com> | 2024-01-05 11:06:08 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2024-01-05 11:06:08 +0000 |
commit | ce0e8d74973cdb24c20f3f29b5ac84a58200fa92 (patch) | |
tree | 8aba5fbfba525e65f8f510cea0abfe5770bd6dd2 /.htaccess | |
parent | 852678e238eaa28199640b4b2a856e53d707ca24 (diff) | |
download | volse-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-- | .htaccess | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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> |