Forum Discussion

UncountedBrute_'s avatar
UncountedBrute_
Icon for Altocumulus rankAltocumulus
Apr 30, 2018

How to add a tel: URI to a Webtop link?

I am trying to construct a list of web-top links that will be pointing outside the F5 so users can access key resources and contacts. When i try to add a URI of tel: it comes up saying this isn't possible and has to be http:// https:// e.t.c. Is there anyway around this, or are web links only valid?

 

1 Reply

  • You can add an URI like

    then use following irule:

    when HTTP_REQUEST {
    if {[HTTP::path] equals "/tel_call"} {
            HTTP::redirect "tel:[URI::query [HTTP::uri] number]'
        }
    }