Forum Discussion
JRahm
Jun 30, 2022Admin
If my assumption is correct that you're looking for an HTTP redirect here, this would be most simply:
when HTTP_REQUEST {
if { [llength [split [HTTP::host] "."]] == 2 } {
HTTP::redirect https://www.[HTTP::host]
}
}