Redirecting URLs without www prefix to URLs with www Prefix using htaccess
Put the following lines of code in htaccess:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^yourdomain.com$
RewriteRule (.*) http://www.yourdomain.com/$1 [R=301,L]
Replace yourdomain.com with your actual domain name.