Getting confused and stuck on syntax for a rewrite rule.
Need to allow for an ‘NOR’ (?) on a condition so that if not domainA and not domainB, then true. Something like ?
RewriteCond %{HTTP_HOST} !^domainA\.com && !^domainB\.com [NC]
Anyone know the correct syntax ?
Thanks
the “AND” is implicit with successive RewriteCond’s, so:
Is the same as: NOT domainA.com AND NOT domainB.com.