↧
Answer by sandroid for Prevent using wildcard in Apache server alias setting
I think what you're missing before all your vhost containers in the conf file is:NameVirtualHost *:80Once you've done that, depending on what you want to do for all those wildcards you deem "invalid"...
View ArticlePrevent using wildcard in Apache server alias setting
This is a modified VirtualHost setting from my server.<VirtualHost *:80> ServerName example.com DocumentRoot /mnt/example/public<Directory /mnt/example/public> AllowOverride all Options...
View Article