I need to know exactly what to ask for. I want all of my URL's to go from http://domain.com to www.domain.com What is it called again? mod re-write?
Heh...you don't need to hire somebody to do it! Just put this in .htaccess file at document root: RewriteEngine On RewriteCond %{HTTP_HOST} ^domain\.com$ [NC] RewriteRule ^(.*)$ http://www.domain.com/$1 [R=301,L] Code (markup): Replace domain and com to required values. Gren rep. appreciated.