Warm tip: This article is reproduced from serverfault.com, please click

slashes in url variables

发布于 2010-06-07 18:53:07

I have set up my coldfusion application to have dynamic urls on the page, such as

www.musicExplained/index.cfm/artist/:VariableName

However my variable names will sometimes contain slashes, such as

www.musicExplained/index.cfm/artist/GZA/Genius

This is causing a problem, because my application presumes that the slash in the variable name represents a different section of the website, the artists albums. So the URL will fail.

I am wondering if there is anyway to prevent this from happening? Do I need to use a function that replaces slashes in the variable names with another character?

Questioner
namtax
Viewed
0
SLaks 2010-06-08 02:57:05

You need to escape the slashes as %2F.