Mar 27, 2026 - For details about updated CVE-2025-53521 (BIG-IP APM vulnerability), refer to K000156741.

Forum Discussion

Sanal_Babu's avatar
Sanal_Babu
Icon for Altostratus rankAltostratus
Apr 15, 2018

HTTP Method _iRule

Is it possible to allow http method "delete" for a specific URL through irule.?

 

1 Reply

  • Yes, that is possible. You could use an iRule like below.

    when HTTP_REQUEST { 
        if { ([string tolower [HTTP::uri]] starts_with "/path/index.html") && ([HTTP::method] equals "DELETE") } {  
            return
        } else {
            reject
        }
    }