Skip to main content
Known Participant
August 16, 2016
Question

CF10 case sensitive URLs?

  • August 16, 2016
  • 1 reply
  • 1664 views

We are migrating our site from CF9 to CF10.  I have an old upload page and it kept giving errors, but it was uploading the document. 

If I use upload.CFM I get a 404 error, if I use upload.cfm it works fine.

Is CF10 case sensitive?

    This topic has been closed for replies.

    1 reply

    WolfShade
    Legend
    August 16, 2016

    Hi, bloodbanker​,

    AFAIK, CF isn't case-sensitive.  It's usually the web server that is case-sensitive (Apache is.)

    I don't know of any settings in CFAdmin that would affect that, but that doesn't mean there isn't one; I just haven't seen it.

    HTH,

    ^_^

    Known Participant
    August 16, 2016

    I know this is an insanely silly question, but how do I know what web server I am running?  It's Windows 2008 R2.

    Priyank Shrivastava.
    Inspiring
    August 16, 2016

    Hi Clifford,

    CF is case sensitive however with the latest update in CF10 we have added all the extension in uriworkers.properties.

    /cfformgateway/* = cfusion

    /CFFormGateway/* = cfusion

    /flex2gateway/* = cfusion

    /flex2gateway = cfusion

    /cffileservlet/* = cfusion

    /CFFileServlet/* = cfusion

    /cfform-internal/* = cfusion

    /flashservices/gateway/* = cfusion

    /flex-internal/* = cfusion

    /rest/* = cfusion

    /*.cfml/* = cfusion

    /*.mxml = cfusion

    /*.as = cfusion

    /*.cfm = cfusion

    /*.CFM = cfusion

    /*.Cfm = cfusion

    /*.cfm/* = cfusion

    /*.swc = cfusion

    /*.cfml = cfusion

    /*.CFML = cfusion

    /*.Cfml = cfusion

    /*.cfc = cfusion

    /*.CFC = cfusion

    /*.Cfc = cfusion

    /*.cfc/* = cfusion

    /*.cfr = cfusion

    /*.cfswf = cfusion

    /*.sws = cfusion

    /*.jsp = cfusion

    /*.hbmxml = cfusion

    Please let me know if you have latest update.

    Thanks,

    Priyank

    Thanks, Priyank Shrivastava