You can do this in your .htaccess file - see
this post from mypokercorner
In your case, if you don't have one already, I'd create a .htaccess file and put the folllowing:
Code:
Options +FollowSymlinks
RewriteEngine on
RewriteCond %{http_host} ^beginnersstud.com [nc]
RewriteRule ^(.*)$ http://www.beginnersstud.com/$1 [r=301,nc]
Redirect 301 /index.html http://www.beginnersstud.com/
I think that's right