Learn how to redirect your website or domain to www using htaccess file.
For Apache based web applications.
What you need:
- File manager or FTP Access
- Ability to locate/create .htaccess file on website root folder
How to Redirect domain to WWW
To redirect your domain (say example.tld) to (say www.example.tld), add the following code to your htaccess file, works for any domain.
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule ^(.*)$ %{REQUEST_SCHEME}://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
Drop your comment if the above code not working for you.