We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
bool HOST(const char *string)
Compares request Host with string. Case is ignored.
Returns true if request method matches string, otherwise false.
if ( HOST("example.com") ) process_example_req(); else if ( HOST("another.com") ) process_another_req();