Given are three website domains each with .net and .org domains: only difference is that one domain ends with a single letter i one with double letters ie and one with single letter y all directly after the letter R
http://www.XYZARi.com
http://www.XYZARie.com
http://www.XYZARy.com
The below rules work fine. But is there a faster way for apache to rewrite these rules? making them go into one line? If one Apache line is faster than the below three, how do I achieve that?? Thanks!
RewriteCond %{HTTP_HOST} ^www\.xyzari\.(net|org)$ [OR]
RewriteCond %{HTTP_HOST} ^www\.xyzarie\.(net|org)$ [OR]
RewriteCond %{HTTP_HOST} ^www\.xyzary\.(net|org)$
RewriteRule ^$ /index.htm [L]
Try:
or
The first is shorter, but could also match
XYZARye