Force "www" before my domain name
- Pillow
- Posts: 0
- Starts: 1
- Wiki Edits: 0
How can I force a redirect to www.domain.com when someone visits just domain.com?
- Rahul
- Posts: 509
- Starts: 0
- Wiki Edits: 1
Hello,
Put the following lines in your.htaccess file.
=
RewriteCond %{HTTP_HOST} !^www.domain.com$ [NC]
RewriteRule ^(.*)$ http://www.domain.com/$1 [L,R=301]
=
Incase the domain is working with mongrel support.. you will need to put these in apache configuration file. In that case do post us a support ticket.
Put the following lines in your.htaccess file.
=
RewriteCond %{HTTP_HOST} !^www.domain.com$ [NC]
RewriteRule ^(.*)$ http://www.domain.com/$1 [L,R=301]
=
Incase the domain is working with mongrel support.. you will need to put these in apache configuration file. In that case do post us a support ticket.
2008-03-30 10:31 PM
Regards,Rahul