I'd like to avoid using ~ for serving user public_html content (apache2). By default the following is working nicely:
http://example.com/~user1
But instead I would have URL looks like:
http://homes.example.com/user1
I understand I could simply use:
AliasMatch ^/([a-zA-Z0-9]+)/?(.*) /home/$1/public_html/$2
But this only works from the main domain
http://example.com/user1
and not within a 'homes' subdomains...
AliasMatchto the wrong virtual host. – mgorven Feb 6 at 19:45