0

Possible Duplicate:
how to redirect www.example.com to example.com via htaccess while on zend framework

I want to redirect

www.example.com to example.com

Can any body help me, How can do that using htaccess.

1 Answers1

0

This should do it;

RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.example\.com$ 
RewriteRule (.*) http://example.com/$1 [R=301,L]
Bart De Vos
  • 17,761
  • 6
  • 62
  • 81