I have an apache server where authentication is required, but there are some calls that need to be allowed for all.
On off these calls is based on a query string for
we can't use , is not supported by < apache 2.4
RewriteEngine On
RewriteCond %{QUERY_STRING} test=ok
RewriteRule ^/ - [E=checkParamTest:1]
Order allow,deny Allow from env=checkParamTest Satisfy any
AuthType openid-connect Require valid-user ...