I have the following strange situation with SSI (Server Side Includes) in Apache servers:
<!--#if expr="1 < 0" -->
results in FALSE in both servers
<!--#if expr="1<0" -->
results in FALSE in 1st server, TRUE in 2nd server
<!--#if expr="(1 < 0)" -->
results in FALSE in 1st server, TRUE in 2nd server
I want the 2nd server to work like the 1st server... how? Is it something that can be fixed in the .htaccess file?
After lots of testing I found out the difference was Apache (1st server) vs. LiteSpeed (2nd server). The way to find it was by: <!--#echo var="SERVER_SOFTWARE" -->