So the site URL you want to use is litti.biz, not www.litti.biz. But the following rules mean, if the URL does not start from www, then redirect to www.
```
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule ^ https://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
```