I want to setup my local development machine so that any requests for *.local are redirected to localhost. The idea is that as I develop multiple sites, I can just add vhosts to Apache called site1.local, site2.local etc, and have them all resolve to localhost, while Apache serves a different site accordingly.

I am on Windows XP.

I tried adding

127.0.0.1       *.local

to my c:\windows\system32\drivers\etc\hosts file, also tried:

127.0.0.1       .local

Neither of which seem to work.

I know I can set them up on different port numbers, but that is a pain since it is hard to remember which port is which.

I don't want to have to setup a local DNS server or anything hard, any suggestions?

link|improve this question

69% accept rate
so finally how did you solve this ? – Jigar Joshi Apr 16 '10 at 4:08
sorry but I didn't! as per accepted answer, it's just not possible – EvilPuppetMaster Jun 4 '10 at 0:03
Please feel free to use anysubdomain.reconn.co.uk as a work around (if you're online), which will always point to your localhost (see my answer below). – Paul Grimshaw Mar 16 at 23:56
feedback

13 Answers

up vote 14 down vote accepted

I don't think that it is possible.

You anyway have to modify the apache virtualroot entries every time you add a new site and location, so it's not a big work to syncronise the new name to the Windows vhost file.

link|improve this answer
1  
But when using Nginx it's not necessary to change configure file of Nginx to add a new group of second level domains *.localhost. So, it's the minus of hosts file. – sergzach Feb 19 at 6:58
Just to point out that when you have a multilingual website, you might have a <VirtualHost> with ServerAlias *.mydomain.localhost (* being the language code), so that you don' have to edit httpd.conf each time you add a new language; but you still need to add the subdomain to the hosts file, hence the relevance of the question above. – Benjamin Mar 27 at 9:05
feedback

To answer your question, you cannot use wildcards in the hosts file under Windows.

However, if you want to only change the hosts file to make new sites work.... you can configure your Apache like this and you don't have to keep editing it's config:

http://postpostmodern.com/instructional/a-smarter-mamp/

Basically a quick summary based on my setup, add the following to your apache.conf file:

 LoadModule vhost_alias_module modules/mod_vhost_alias.so

 NameVirtualHost *:80

  <Directory "/xampp/sites">
      Options Indexes FollowSymLinks Includes ExecCGI
      AllowOverride All
      Order allow,deny
      Allow from all 
  </Directory>

  <VirtualHost *:80>
      VirtualDocumentRoot c:/xampp/sites/%-1/%-2+/
  </VirtualHost>

This allows me to add an entry like:

127.0.0.1       test.dev

and then make the directory, c:\xampp\sites\dev\test and place the necessary files in there and it just works.

The other option is to use <Directory> tags in apache.conf and reference the pages from http://localhost/project/.

link|improve this answer
Can you use wildcards on OSX? – cjm2671 Oct 16 '11 at 15:24
Yes using Bind - clintberry.com/2011/… – Ryan Schumacher May 7 at 19:33
feedback

I found a posting about Using the Windows Hosts File that also says "No wildcards are allowed."

In the past, I have just added the additional entries to the hosts file, because (as previously said), it's not that much extra work when you already are editing the apache config file.

link|improve this answer
feedback

Editing the hosts file is less of a pain when you run "ipconfig /flushdns" from the windows command prompt, instead of restarting your computer.

link|improve this answer
feedback

Acrylic DNS Proxy (free, open source) does the job. It creates a proxy DNS server (on your own computer) with its own hosts file. The hosts file accepts wildcards.

http://mayakron.altervista.org/support/browse.php?path=Acrylic&name=Home

link|improve this answer
Please upvote this answer. This is by far best answer for the problem posed by that question. Combine it with VirtualDocumentRoot and you have comfy work environment. – Kamil Szot Apr 13 at 15:41
feedback

You could talk your network administrator into setting up a domain for you (say 'evilpuppetmaster.hell') and having the wildcard there so that everything (*.evilpuppetmaster.hell') resolves to your IP

link|improve this answer
1  
Thanks but this is on a home devserver, there is no DNS or network administrator available. – EvilPuppetMaster Sep 26 '08 at 8:04
OK, maybe you have access to a domain or know somebody who does? E.g.: *.evilpuppetmatser.arealdomain.com – Stu Thompson Sep 26 '08 at 8:10
Not really. Even so, this is a home machine so it gets a new IP everytime my router connects to the internet. An external DNS server wouldn't help. – EvilPuppetMaster Sep 26 '08 at 8:13
1  
1) There is no reason *.evilpuppetmatser.arealdomain.com cannot resolve to 127.0.0.1, 2) i'm not suggesting an external DNS server. I am suggesting that you use a sub-domain on a real domain. Technically, anybody can resolve server.evp.arealdomain.com. – Stu Thompson Sep 26 '08 at 8:19
1  
I know this is a big workaround, but it works great! – Paul Grimshaw Mar 16 at 23:34
show 1 more comment
feedback

I could not find a prohibition in writing, but by convention, the Windows hosts file closely follows the UNIX hosts file, and you cannot put wildcard hostname references into that file.

If you read the man page, it says:

DESCRIPTION
     The hosts file contains information regarding the known hosts on the net-
     work.  For each host a single line should be present with the following
     information:

           Internet address
           Official host name
           Aliases

Although it does say,

     Host names may contain any printable character other than a field delim-
     iter, newline, or comment character.

that is not true from a practical level.

Basically, the code that looks at the /etc/hosts file does not support a wildcard entry.

The workaround is to create all the entries in advance, maybe use a script to put a couple hundred entries at once.

link|improve this answer
feedback

You can use a dynamic DNS client such as http://www.no-ip.com. Then, with an external DNS server CNAME *.mydomain.com to mydomain.no-ip.com.

link|improve this answer
that would resolve to your external ip, and usually that would just bring up your router/modems config page – Sam Jan 17 '11 at 15:09
feedback

Have apache listen on many ports is also an alternative.

link|improve this answer
feedback

I have written a simple dns proxy in Python. It will read wildcard entries in /etc/hosts. See here: http://code.google.com/p/marlon-tools/source/browse/tools/dnsproxy/dnsproxy.py

I have tested in Linux & Mac OS X, but not yet in Windows.

link|improve this answer
feedback

You may try AngryHosts, which provided a way to support wildcard and regular expression. Actually, it's a hosts file enhancement and management software.
More features can be seen @ http://angryhosts.com/features/

link|improve this answer
feedback

Following on from @Stu Thompsons answer, please feel free to use my domain anySubDomain.reconn.co.uk. This will point any sub domain to your local host 127.0.0.1. I will leave this up and running if it is of any use.

A workaround that works if you're online...

link|improve this answer
feedback

You can also use different directories on the same virtual host:

http://localhost/site1

http://localhost/site2

http://localhost/site3

http://localhost/site4

and so on... Using <Directory ...> directives to configure each in a different way if necessary

link|improve this answer
4  
The problem with that is that sites often have root relative links for images, javascript, css etc... building for subdirectories makes life much more difficult. – EvilPuppetMaster Sep 26 '08 at 7:57
3  
This looks like a design error for me. A site should work both from the root directory and subdirectories. – Yorirou Oct 17 '10 at 17:56
1  
@Yorirou I agree. It's a design error to not support loading from a subdirectory. But... While I love building stuff from the ground up, I get hired to work on and fix a lot of existing sites. And most of them need fixing for a reason -- because they're total rubbish. – mattalexx Dec 30 '10 at 0:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.