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 had seen this domain name in facebook's presentation. But when I try to open. it redirect me to my localhost (WAMP). Open This Link of facebook's subdomain. Why It's redirecting me to my localhost.

MY QUESTION IS HOW CAN I SET UP SERVICE LIKE THIS ON MY OWN DOMAIN ?

I had attached preview as below, if you don't have wamp / xamp installed on your machine.

enter image description here

** It's my localhost

share|improve this question
It doesn't technically redirect you to localhost, the hostname www.prod.facebook.com simply resolves to a localhost address (127.0.0.2). – Joachim Isaksson Jan 15 at 19:17
@JoachimIsaksson : my localhost address is not 127.0.0.2 ! – Hardik Thaker Jan 15 at 19:18
1  
All 127.x.x.x addresses are localhost on Windows. It's only that by convention, 127.0.0.1 is usually used (and I think MacOS only uses that single address) Try pinging any 127.x.x.x address and you'll get a reply. – Joachim Isaksson Jan 15 at 19:27
+1 for '127.x.x.x' this.. :) thanks.. – Hardik Thaker Jan 15 at 19:36

closed as off topic by Igy, Matteo, Soner Gönül, lucapette, tkone Jan 15 at 22:12

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

All they've done is mapped (via DNS) the hostname www.prod.facebook.com to the IP address 127.0.0.2. If you have control over your domain's DNS you can do that easily. I'm sure they did this so that the URL looked more official in the demo, rather than putting "localhost" in the browser's URL bar.

share|improve this answer
which function i have to configure in my dns zone editor ? (on server) and can i setup this service by configuring my http.conf file of apache server ? – Hardik Thaker Jan 15 at 19:33
3  
In DNS terms, this is an A record in a zone file. Apache http.conf won't be involved except to set up a virtual host for whatever name you want to use for your site. But to be clear, these are 2 separate things: DNS translates the host name into an IP address, and the machine with that IP address inspects the host name to determine what apache site to serve if you use virtual hosts. – jfrank Jan 15 at 20:36

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