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.

What is difference between writing a URL (say google.com) http://www.google.com and http:\\www.google.com

share|improve this question
it is basic thing to access web URL – user1140574 Feb 22 '12 at 6:38
1  
@adi why You ask question like this? – Kites Feb 22 '12 at 6:42
This seems like a very reasonable question. – templatetypedef Feb 22 '12 at 6:46
1  
Maybe for someone with a Windows background? ;) en.wikipedia.org/wiki/Backslash – summea Feb 22 '12 at 6:54
1  
@lpa: well frankly even i was shocked when it was asked to me in an interview – adi Feb 22 '12 at 13:57
show 1 more comment

closed as not a real question by Gabe, shellter, Robert Harvey Mar 21 '12 at 5:48

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

5 Answers

One works and the other doesn't.

share|improve this answer
3  
+0.49 for snark. – cHao Feb 22 '12 at 6:23
There was no "why" in the OP question. :) – summea Feb 22 '12 at 22:31

The syntax for url's is this..

scheme://domain:port/path?query_string
share|improve this answer
2  
Almost, it's actually scheme://domain:port/path?query_string#fragment_id ... – cha0site Feb 22 '12 at 11:47

http:\\www.google.com is not valid URL address.

share|improve this answer
but it works in most of browsers like Google chrome and IE(doesn't work in Mozilla) – adi Feb 22 '12 at 13:53
2  
this because these browsers include auto-url-fix feature which can simply detect any invalid URL pattern and fix it... – Robin Van Persi Feb 22 '12 at 15:03

Backslash is wrong. Do not use \ for URLs.

share|improve this answer
its \\ and not just backlash()..sorry for typing mistake – adi Feb 22 '12 at 13:59

You can ask why http:##google.com or http:%%google.com is not working? Because it's built so. It's a kind of a rule: "for abc protocol write abc://"

share|improve this answer
@ShashankKadne answered perfectly. – shift66 Feb 22 '12 at 6:28

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