I have a lot of subdomains in the main domain xxx.zzz
So, for this domain, I can have
aaa.xxx.zzz
bbb.xxx.zzz
ccc.xxx.zzz
ddd.xxx.zzz
eee.xxx.zzz
....ETC....
Istead of adding each subdomain in the host file, I would like to add only the main domain xxx.zzz and then to be able to access all the subdomains.
I have tryed with *.xxx.zzz but apparently, this will not work (Linux or Windows).
Any idea is welcome. Thank you very much.
Wildcards don't work in hosts files. You either have to write them all:
or setup proper DNS
If you REALLY want this to work you should be using DNS as stated but if you're not in control of DNS and need to use the HOSTS file, you can use a DNS Proxy on your PC which allows wildcards in its own HOSTS file.
Example is in this thread, read down to the post about Acrilic DNS : https://stackoverflow.com/questions/138162/wildcards-in-a-hosts-file
Wildcard syntax is possible in full-featured DNS servers. For BIND record should look like this:
If you clarify what DNS server you use I can provide an example for it.