I have configuration like this.
I want /.well-known/acme-challenge/ to work without redirect, but everything else to go to https:// example.com
Already tried with but it also does not work.
<VirtualHost _default_> ServerName example.com Alias /.well-known/acme-challenge/ /letsencrypt/.well-known/acme-challenge/ Redirect / https://example.com/ </VirtualHost>