I have a redirect in my configuration that if a host header matches a certain value, then it will redirect to https.
Originally I had the full host header, www.domain.com (actually www[.]domain[.]com).
However, I found out that if a user just enters "domain.com", without the www, it is not being detected and redirected.
I want to add a wildcard for the host portion. I tried .*[.]domain[.]com. But it seems to be hit or miss. Sometimes it seems to work, but other times it doesn't.
Is this the correct format for what I'm trying to do?
Thanks.
Jason