Forum Discussion

demmo_251289's avatar
demmo_251289
Icon for Nimbostratus rankNimbostratus
May 31, 2016
Solved

redirect for uppercase URI

Hello, I have a issue with a redirect, part of the URI is uppercase /something/somethingelse/NEW/index.html, and I'd like to redirect to lower /something/somethingelse/new/index.html   Now, if I d...
  • Yann_Desmarest_'s avatar
    May 31, 2016

    If you know which part of the uri is uppercase, you can change the if condition like below :

    when HTTP_REQUEST {
        if {  [HTTP::path] contains "/NEW/"} {
            HTTP::redirect [string tolower [HTTP::uri]]
        }
    }