vote up 2 vote down star

For example, here on stack overflow the URL http://stackoverflow.com/questions/tagged/javascript+php will give you all questions tagged with javascript and php.

The system I have allows tags with spaces in them, so the approach used here would not be a good fit for me.

What character would you use to separate the tags, so the URLs are still human readable, google readable and web browser compatible.

My gut feeling was to use commas. eg http://example.com/tagged/first+tag,second+tag

Any feedback or suggestions would be welcome.

flag

5 Answers

vote up 3 vote down check

What about dashes for spaces? See the link for your question and you got it.

link|flag
Looks like the consensus is to rewite the tags to use dashes for spaces, then leave the resulting tags separated by spaces same as here. – rikh Jan 7 at 12:26
vote up 2 vote down

Keep in mind: putting "-" instead of "_" is better in the eye of a search engine spider, and it is SEO rule

link|flag
vote up 1 vote down

Why not stick to using + as the tag separator and use something like an underscore '_' or just a %s for the spaces in the tag names?

link|flag
vote up 0 vote down

If your language has a URLEncode function then use that to modify your tags.

link|flag
vote up 0 vote down

How about + for spaces and - for tag spaces, then (just compiling best of both answers)?

I also have another tip, a little on the side, in case you haven`t thought of it. You can include non-answered questions with specific tags by adding unanswered/ before tagged.

See the related question How to display questions with tag X that are unanswered

link|flag

Your Answer

Get an OpenID
or

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