From 0d53e2315123830ede7b44a0ea35f14957d4ec23 Mon Sep 17 00:00:00 2001 From: FreeScout Date: Mon, 6 Jun 2022 22:25:50 -0700 Subject: [PATCH] Allow acess to /.well-known on Apache --- .htaccess | 1 + 1 file changed, 1 insertion(+) diff --git a/.htaccess b/.htaccess index 85b53cb0..d92a72c5 100644 --- a/.htaccess +++ b/.htaccess @@ -5,5 +5,6 @@ # On some hostings it does not work as "public/$1", but works as "/public/$1". # But we can't write it as "/public/$1" because in this case it does not work # when application is installed in subdirectory. + RewriteCond %{REQUEST_URI} !/\.well\-known/?.* RewriteRule (.*) public/$1 [L] \ No newline at end of file