What is the proper way to re-direct? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T00:19:25Z http://stackoverflow.com/feeds/question/816924 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/816924/what-is-the-proper-way-to-re-direct 5 What is the proper way to re-direct? altCognito 2009-05-03T12:25:26Z 2009-05-03T12:36:34Z <p>If I have two domain names:</p> <p>altcognito.com</p> <p>and say I've got the other following domain:</p> <p>alt-cognito.com</p> <p>What's the "best" redirect (do I use permanent etc...?) I want to suggest that altcognito.com is the "correct" website.</p> <p>(naturally, these are just examples)</p> http://stackoverflow.com/questions/816924/what-is-the-proper-way-to-re-direct/816930#816930 6 Answer by kdgregory for What is the proper way to re-direct? kdgregory 2009-05-03T12:28:59Z 2009-05-03T12:28:59Z <p>If you want to say that "you should always go to foo instead of bar," you want a 301 redirect (which you do with your front-end server). See <a href="http://www.google.com/support/webmasters/bin/answer.py?hl=en&amp;answer=93633" rel="nofollow">http://www.google.com/support/webmasters/bin/answer.py?hl=en&amp;answer=93633</a></p> <p>A 302 (temporary) redirect should be used in cases where you can't serve a page, but expect it to come back later. Unfortunately, it's the redirect that you get from JSP forward.</p> <p>A client-side (meta refresh or javascript) redirect should be avoided whenever possible.</p> <p>Edit per comment: here's a link to the Apache docs for configuring a permanent (or temporary) redirect: <a href="http://httpd.apache.org/docs/2.2/mod/mod_alias.html#redirect" rel="nofollow">http://httpd.apache.org/docs/2.2/mod/mod_alias.html#redirect</a></p> http://stackoverflow.com/questions/816924/what-is-the-proper-way-to-re-direct/816952#816952 4 Answer by cherouvim for What is the proper way to re-direct? cherouvim 2009-05-03T12:36:34Z 2009-05-03T12:36:34Z <pre><code>&lt;VirtualHost *:80&gt; ServerAlias altcognito.com ServerAlias alt-cognito.com ServerAlias www.alt-cognito.com RedirectMatch permanent ^/(.*) http://www.altcognito.com/$1 &lt;/VirtualHost&gt; </code></pre> <p>The 3 domains (www and non-www) will 301 redirect to your main domain www.altcognito.com</p>