Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

how do I setup a rule (on httpd.conf) to redirect all the traffic from www.domain.com to domain.com ? will the following work ?

< VirtualHost www.domain.com >
      Redirect 301 / http://domain.com/
< /VirtualHost >

where should I put this tag in httpd.conf - does the order matter ?

share|improve this question

closed as off topic by casperOne Feb 21 '12 at 18:20

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

up vote 10 down vote accepted

This is an example of what you can use/do:

<VirtualHost *:80>

  DocumentRoot "/var/www/domain.com"
  ServerName domain.com
  ServerAlias domain.com www.domain.com

  <Directory "/path/to/public_html">
      allow from all
      Options +Indexes
  </Directory>

  Options +FollowSymLinks
  RewriteEngine On
  RewriteCond %{HTTP_HOST} ^www.domain.com [NC]
  RewriteRule (.*) http://domain.com%{REQUEST_URI} [R=301,L]

</VirtualHost>

The Redirect 301 is good to use but does not have the same flexibility as a rewrite rule.

share|improve this answer
I think that you posted exactly the opposite of what I want to achieve: I want all www.domain.com to go to domain.com - not vice versa, but thanks! it definitely helped! – alfasin Feb 17 '12 at 3:38
1  
sorry yes, (I used my virtual host config) - I updated the rule. – Book Of Zeus Feb 17 '12 at 3:39
Thanks, I'll accept your answer the min the system will let me (I have to wait 1 min - not sure why) – alfasin Feb 17 '12 at 3:40
No problem, thanks – Book Of Zeus Feb 17 '12 at 3:41

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