I am using lighttpd
web server and mod_write
and have a simple host match expression:
$HTTP["host"] =~ "domain\.com$" {
}
The problem is this is matching test.domain.com
as well. How do I modify the expression to only match http://domain.com but not any subdomains such as test.domain.com?
Thanks.