Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
so finally how did you solve this ? – Jigar Joshi Apr 16 '10 at 4:08
3  
sorry but I didn't! as per accepted answer, it's just not possible – EvilPuppetMaster Jun 4 '10 at 0:03
1  
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 '12 at 23:56
3  
Please accept the "Acrylic DNS Proxy" so you can help other people. Its far better than the "Not working" one you have accepted. – ANDiTKO Jan 8 at 9:57

12 Answers

up vote 16 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.

share|improve this answer
2  
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 '12 at 6:58
4  
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 '12 at 9:05
6  
not everyone is using Apache – johannes Aug 27 '12 at 13:38
4  
Dynamic Virtual Hosts are the keyword here and are supported by most servers, i.e. Apache and Nginx. So no, you definitely don't have to touch your Apache-config every time you create a project. – Quelltextfabrik Dec 11 '12 at 11:19
1  
We can have wildcard virtual hosts too, it's only down to the hosts file really – fuzzybee Dec 28 '12 at 6:59

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.

Download from the offical website

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

Configuring Acrylic DNS Proxy

To configure Acrylic DNS Proxy, install it from the above link then go to:

  1. Start
  2. Programs
  3. Acrilic DNS Proxy
  4. Config
  5. Edit Custom Hosts File

Add the folowing lines on the end of the file:

127.0.0.1   *.localhost
127.0.0.1   *.local
127.0.0.1   *.lc

Restart the Acrilic DNS Proxy service:

  1. Start
  2. Programs
  3. Acrilic DNS Proxy
  4. Config
  5. Restart Acrilic Service

You will also need to adjust your DNS setting in you network interface settings:

  1. Start
  2. Control Panel
  3. Network and Internet
  4. Network Connections
  5. Local Area Connection Properties
  6. TCP/IPv4

Set "Use the following DNS server address":

Preferred DNS Server: 127.0.0.1

If you then combine this answer with jeremyasnyder's answer (using VirtualDocumentRoot) you can then automatically setup domains/virtual hosts by simply creating a directory.

share|improve this answer
13  
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 '12 at 15:41
3  
+1 Great to know about this tool. – Dan Solovay Nov 10 '12 at 18:50
This is great! I also had to change my NIC's DNS to 127.0.0.1 (instead of "Obtain DNS server address automatically"). Start -> Control Panel -> Network and Internet -> Network Connections -> Local Area Connection -> Properties -> Internet Protocol Version 4 -> Properties -> Use the following DNS server addresses: -> Preferred DNS Server -> 127.0.0.1 – jiy Feb 8 at 22:11
@jiy thanks, I updated the answer so hopefully its more readable. – Petah Feb 8 at 22:24
Just to be clear, the "custom hosts file" is AcrylicHosts.txt, not AcrylicConfiguration.ini. Maybe that should be obvious, but it confused me for a while. – mhenry1384 May 7 at 14:07

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/.

share|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 '12 at 19:33

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.

share|improve this answer

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

share|improve this answer
it does not flush browser dns cache, but window's. So he has to wait 20-30 mins for the browser to release dns caching. – Jacob Melvad Jensen Nov 29 '12 at 11:59

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

share|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
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 '12 at 23:34
1  
There are also some public ones like *.127.0.0.1.xip.io and others – Dave James Miller Feb 27 at 23:03
show 2 more comments

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/

share|improve this answer
Yeah I gave this a shot and seems to work well. :-) – Simon Dec 20 '12 at 1:44

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.

share|improve this answer

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.

share|improve this answer

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.

share|improve this answer
1  
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

Have apache listen on many ports is also an alternative.

share|improve this answer

While you can't add a wildcard like that, you could add the full list of sites that you need, at least for testing, that works well enough for me, in your hosts file, you just add:

127.0.0.1 site1.local
127.0.0.1 site2.local
127.0.0.1 site3.local
...

share|improve this answer

protected by Baba May 5 at 20:38

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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