There are some files (with unique names) in a directory structure like this:
/var/www/domain1/unique_filename1
/var/www/domain2/unique_filename2
/var/www/domain3/unique_filename3
At the moment, all of the domain directories are accessible as sub-directories of a master domain and clients can access the files using following URIs:
www.my-master-domain.com/domain1/unique_filename1
www.my-master-domain.com/domain2/unique_filename2
www.my-master-domain.com/domain3/unique_filename3
I'd like to modify Apache 2.4 configuration so that I will be able to access files without mentioning secondary domains in my URLs, for example:
www.my-master-domain.com/unique_filename1
www.my-master-domain.com/unique_filename2
www.my-master-domain.com/unique_filename3
And of course it's not desirable to do any redirect on client browsers (and event If I wanted, it would not be possible in this special case), I just need to directly server the files via second set of mentioned URLs.
Any ideas?