What is the proper way to re-direct? - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T00:19:25Zhttp://stackoverflow.com/feeds/question/816924http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/816924/what-is-the-proper-way-to-re-direct5What is the proper way to re-direct?altCognito2009-05-03T12:25:26Z2009-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#8169306Answer by kdgregory for What is the proper way to re-direct?kdgregory2009-05-03T12:28:59Z2009-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&answer=93633" rel="nofollow">http://www.google.com/support/webmasters/bin/answer.py?hl=en&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#8169524Answer by cherouvim for What is the proper way to re-direct?cherouvim2009-05-03T12:36:34Z2009-05-03T12:36:34Z<pre><code><VirtualHost *:80>
ServerAlias altcognito.com
ServerAlias alt-cognito.com
ServerAlias www.alt-cognito.com
RedirectMatch permanent ^/(.*) http://www.altcognito.com/$1
</VirtualHost>
</code></pre>
<p>The 3 domains (www and non-www) will 301 redirect to your main domain www.altcognito.com</p>