0

When I add a comma in a URL it shows up as %2c% . But this site's URL has a comma.

How do I write my URL so it appears to visitors as a comma and not as %2c%?

BSMP
  • 4,596
  • 8
  • 33
  • 44
ftdeveloper
  • 1,053
  • 3
  • 26
  • 50
  • Some information regarding it is specified at http://stackoverflow.com/questions/198606/can-i-use-commas-in-a-url.. Please check – captainsac Jul 11 '13 at 09:01

2 Answers2

2

%2c is directly equivalent to a comma. You shouldn't see any difference in behaviour between the two. (Do you?)

RichieHindle
  • 272,464
  • 47
  • 358
  • 399
0

The site you link to uses url rewriting, that's why commas are shown. They are not generated through a post.

BR