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.

link|improve this question
feedback

closed as exact duplicate by womble, Janne Pikkarainen, Bart De Vos, sam, Chopper3 Aug 3 '11 at 13:42

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

This should do it;

RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.example\.com$ 
RewriteRule (.*) http://example.com/$1 [R=301,L]
link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.