Skip to content
Jurek Muszyński edited this page Sep 8, 2018 · 1 revision

bool HOST(const char *string)

Description

Compares request Host with string. Case is ignored.

Returns

Returns true if request method matches string, otherwise false.

Example

if ( HOST("example.com") )
    process_example(ci);
Clone this wiki locally