Scheme relative URLs (network-path references) are something that I've just found out about - where you don't specify the scheme of a URL and it picks it up from the current context.

For example: <img src="//domain.com/img.png" /> will resolve to https://domain.com/img.png if the current scheme is HTTPS or http://domain.com/img.png if it is not.

This seems like a very easy way to resolve those pesky problems of calling an external script or image on an SSL page without bringing up the dreaded error that some content on a page is not secure.

The benefit seems obvious, but what I don't seem to be able to find is a huge amount of information on this and was wondering if anyone had any experience or references about scheme relative URLs (good or bad)?

Whilst I'm trying to discover if there are any browsers that this causes issues with (I've been successful with IE6-8, Chrome and Firefox), I'm also interested to find out if anyone has any experience using this in different languages. For example, would it work if you were to issue a Response.Redirect with a scheme relative URL in ASP?

link|improve this question
1  
Congratulations on your first Stack Overflow question! :) – Dan Atkinson Aug 27 '10 at 10:36
feedback

2 Answers

up vote 17 down vote accepted

//domain.com/img.png is a perfectly valid URI syntax as per RFC 3986: Section 4.2.

It is relative to the current scheme, and therefore as you mentioned, it can be very useful when switching between http and https, because you won't need to explicitly specify the scheme.

All modern browsers will understand that format, including IE 6.

Further reading on Stack Overflow:

link|improve this answer
3  
Such URLs are not new. They are part of the URL specification since 1995 (see RFC 1808). – Gumbo Aug 27 '10 at 10:14
I would not necessarily trust any kind of client to parse these URLs correctly, but the major browsers definitely will. – Pekka Aug 27 '10 at 10:18
Is there any reason why Google would choose to do it the other way then? - code.google.com/apis/analytics/docs/tracking/… – Dan Atkinson Aug 27 '10 at 10:30
4  
@Dan Atkinson: For Google Analytics it is probably much more important to be compatible with any obscure user agent out there, and probably they found that this is more reliable. However, I guess that in general, our web applications don't have to be compatible with browsers from the Netscape 2 era. – Daniel Vassallo Aug 27 '10 at 10:48
That's as good a reason as any! Thanks! – Dan Atkinson Aug 27 '10 at 11:12
show 2 more comments
feedback

A good blog post about this topic: http://paulirish.com/2010/the-protocol-relative-url/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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