I have a server hosting a few sites each having its own container:
<VirtualHost *:80>
ServerName xxx.net
ServerAlias www.xxx.net
DocumentRoot /var/www/xxx
</VirtualHost>
The main site is sitting in:
DocumentRoot "/var/www/html"
I have (bad bot) rewrite rules for the main site in httpd.conf which works well.
However I wish to have those rules apply to all virtual hosts... do I have to duplicate the rules in each container or is there someway I can list them once and have them apply?