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.

My application relies on the URL for data; e.g.: /categories/parent_name/child_name

The URL is split on "/" to determine parent and child category names, which is used for database lookups. Some category names contain "/": /categories/parent_name/child_na/me So, it makes sense to escape "/" with "%2F" in URL: /categories/parent_name/child_na%2Fme

But when doing so, the server receives the request and converts "%2F" back to "/".

So, when I do a split on the URL, for the parts I undesirably get 1) parent_name 2) child_na 3) me

and I want 1) parent_name 2) child_na/me

Any ideas on how to work around the issue? Is there any other way than dealing with the raw query string?

share|improve this question
Apache webserver? – h0tw1r3 Apr 26 '12 at 21:47
This is on IIS. – Chad Johnson Apr 26 '12 at 22:38
Have you tried double encoding (%252f) ? – h0tw1r3 Apr 27 '12 at 15:03

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.