Guest Posted March 14, 2007 Share Posted March 14, 2007 I need my server to add www. to the begining of my domains. For example if you go to example.com i would want it to change to www.example.com how can i do that? Quote Link to comment Share on other sites More sharing options...
WebGeek182 Posted March 15, 2007 Share Posted March 15, 2007 Very easy my friend. Simple add this to the beginning of your .htaccess: RewriteEngine On RewriteCond %{HTTP_HOST} !^www\.example\.com RewriteRule ^/(.*) http://www.example.com/$1 [R=301,L] If you need more help, please let me know. Also you may want to check out this .htaccess reference. Quote Link to comment Share on other sites More sharing options...
Guest Posted March 15, 2007 Share Posted March 15, 2007 oh thak you so much. Can i put it in a directory above all the domains and have it work for all of them somehow? Quote Link to comment Share on other sites More sharing options...
Guest Posted March 15, 2007 Share Posted March 15, 2007 I cant figure a way for it to work for anything below it. Is there a way? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.