Last Updated: February 25, 2016
·
563
· mathewbyrne

Super-quick Apache domain redirect

A quick way to, for example, redirect to a canonical domain from others.

<VirtualHost *:80>
    ServerName www.example.com
    Redirect permanent / http://example.com/
</VirtualHost>

I prefer configuring like this since it separates the redirect from configuration of your main host.