In .htaccess:
RewriteCond %{HTTP_HOST} ^domain.info
RewriteRule (.*) http://www.domain.info/$1 [R=301,QSA,L]
In server .conf file:
Alias "/.well-known/acme-challenge" "/tmp/.well-known/acme-challenge"
Problem is that when I call:
www.domain.info/.well-known/acme-challenge/someString
It is redirect to bad URL:
www.domain.info.well-known/acme-challenge/someString
First slash is missing. Do you know why please? Without this rewrite is all ok.