Forum Discussion

smoraneng's avatar
smoraneng
Icon for Nimbostratus rankNimbostratus
Jun 03, 2019
Solved

Redirect based on # of domain parts

I have a server that has several websites on it. I need to create a redirect for the sites, but it needs to be rather generic because the developers don't always tell us what the sites are. I want ...
  • Dario_Garrido's avatar
    Jun 03, 2019

    Try this

    when HTTP_REQUEST {
    	if { !(string tolower [HTTP::host] starts_with "www") && (llength [split [HTTP::host] "."] == 2) } {
    		HTTP::redirect "http://www.[HTTP::host][HTTP::uri]"
    	}
    ]

    KR,

    Dario.