Okay, I have done a fair amount of searching but still can\'t find something specific enough to handle my problem.
Right now I have a DNS record that redirects all o
According to evan's blog, you might configure your ServerAlias with wildcard "*" if you make apache as your server side. Every visit to the subdomain will be redirected or routed to the root domain in this case.
VirtualDocumentRoot "/path/to/your/workspace/%1/public"
ServerName vhosts.dev
ServerAlias *.dev
UseCanonicalName Off
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
Allow from all