How to redirect non-www URLs to www?
To redirect your website from non-www to www, add the following lines in your website’s .htaccess file:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^yourdomain.com [NC]
RewriteRule ^(.*)$ https://www.yourdomain.com/$1 [L,R=301]
Replace yourdomain.com with your actual domain name.