Skip to content
Jurek Muszyński edited this page Mar 28, 2024 · 2 revisions

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_req();
else if ( HOST("another.com") )
    process_another_req();
Clone this wiki locally