In an HTTP URL, the hash sign (#) signifies an anchor within a page and may only appear once.

Is this a universal rule for all URLs? If I want to implement a custom URL protocol, can I use the following as a legal URL?

myprotocol://zoo#1/cage#30/lion#11

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

In your own protocol you may do what ever you please. However if you want common parsers to be able to parse your URL you'll have to follow RFC3986 You may want to take a look at section 3 syntaxe component as for rules for using "#", "?", ":" and "/".

link|improve this answer
feedback

Nothing to stop you implementing your own protocol, but probably not much point in re-inventing the wheel - why not just use http://zoo/?x=1&y=2 (ie the query string!) that's what it's there for :)

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.