For redirecting domain.com to www.domain.com you need to made folllowing changes in your .htaccess file.
For this changes make sure that mod_rewrite module is available on your server .
RewriteEngine on
RewriteCond %{HTTP_HOST} ^domain\.com
RewriteRule ^(.*)$ http://www.domain.com/$1 [R=permanent,L]
Note: please replace domain.com with your domain name.
Latest posts by Tuks (see all)
- PHP Parse error: syntax error, unexpected T_STRING - October 13, 2008
- apache error error : [notice] child pid x exit signal File size limit exceeded (25.) - October 13, 2008
- Currently not permitted to relay through this server (email error) - January 3, 2007