Public Wildcard Domain Name To Resolve To 127.0.0.1 [closed]

☆樱花仙子☆ 提交于 2019-11-26 23:53:08

问题


Is anyone aware of a public wildcard domain name that resolves to IP address 127.0.0.1. For example if I wanted to test a URL locally such as mywebsite.localhost.com or example.localhost.com but I don't have control of DNS settings (hosts file or whatever) then I would use this public DNS to resolve to 127.0.0.1. It needs to be wildcarded so that no matter whatever comes before localhost.com it still resolves to 127.0.0.1.


回答1:


*.vcap.me

VMWare maintains this for their open cloud platform.




回答2:


37Signals created a complete domain for mapping to any IP you want, http://xip.io. So for localhost you can using project.127.0.0.1.xip.io

I've had to starting using this for some proxy tools, as they were choking on request that didn't resolved to an IP using an external DNS call.




回答3:


  • smackaho.st
  • 42foo.com



回答4:


I've just found a great solution: lvh.me

you can try it:

  • http://lvh.me
  • http://sub.lvh.me



回答5:


We've got a domain you can actually remember for this.

*.lacolhost.com

We'll maintain it for as long as we're able.

Developing with subdomains just got a lot easier: *.lacolhost.com




回答6:


Note: This domain has now lapsed so won't work as described below.

It looks like *.127-0-0-1.org.uk will do what you need.

http://www.ecclestoad.co.uk/2006/08/dns-entry-pointing-to-localhost

Examples:

  • http://www.127-0-0-1.org.uk/
  • http://test1.127-0-0-1.org.uk/
  • http://127-0-0-1.org.uk/
  • http://foo.bar.127-0-0-1.org.uk/



回答7:


http://localhost.tv does the trick :-)

I bought since none of the existing 85 localhost domains were pointing at localhost...




回答8:


If nothing else, you could just register a domain for yourself and set it up so that's how it behaves.




回答9:


You can go to http://afraid.org and register one.. You can get free domains(well subdomains, but you have complete control over A and NS and such records) and point one at 127.0.0.1. They support wild-cards




回答10:


Feel free to use *.localhst.co.uk (note missing second 'o'). I'll keep it alive as long as I am, and the internet is still a thing. Handy for people who want to test with two levels of TLD.




回答11:


http://*.localtest.me seems to work, except readme.localtest.me.




回答12:


If you are using Windows DNS, you can create a new zone, then you DnsCmd to add A records for @ and *.

dnscmd /RecordAdd local * 3600 A 127.0.0.1
dnscmd /RecordAdd local @ 3600 A 127.0.0.1



回答13:


Why not using the literal IP address in the URL?

  • http://127.0.0.1/ (old IPv4)
  • http://[::1]/ (new IPv6)



回答14:


This domain resolves to 127.0.0.1:

www.mouse-potato.com




回答15:


somesite.com is the first one I knew about, however I found a whole bunch here

http://www.websiteoutlook.com/www.somesite.com

Check the 20 other sites point to 127.0.0.1. I have no idea how long these sites will stay pointing to 127.0.0.1.




回答16:


I have set up my own that you can use:

home.pdobson.com resloves to 127.0.0.1




回答17:


Your hosts file in C:\WINDOWS\system32\drivers\etc ought to be able to do this, just add one single line like this:

127.0.0.1 www.mydomain.com

Additionally, use a server like apache or a program with it like wamp, and just go to http://localhost



来源:https://stackoverflow.com/questions/1562954/public-wildcard-domain-name-to-resolve-to-127-0-0-1

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!