I own: http://www.redscowl-bluesingsky.us But if someone goes to: http://redscowl-bluesingsky.us How do I redirect it?
first of all, what type of programming do you use? PHP ASP ASP.NET etc... PHP and ASP are the only type of file extension you can redirect with a simple code upload. The other two you would have to make a server side modification (probobaly) unless you have access to the httpd.ini file. Since your avatar is buggering a penguin, I am guessing that you are not on a linux server
add this to your htaccess (assuming your webhost allows you to modify it) RewriteEngine On RewriteCond %{HTTP_HOST} !^www\.domain\.com RewriteRule ^/(.*) http://www.domain.com/$1 [R=301,L] if you are on a linux server there may be a way to do it through your control panel also.