Not sure if this is the right forum - please redirect me somewhere else if not.
I know I can use conditional SSI to include a file based on the query string part of the URL, i.e.
But what I want to do if conditionally include a file if the query string doesn't begin with certain characters and I don't know the syntax for the "not equal to" (<> ? != ? Something else?) or the wildcard operator to use (* ? % ? . ? Something else?)
Anyone know?
I know I can use conditional SSI to include a file based on the query string part of the URL, i.e.
Code:
<!--#if expr="${QUERY_STRING} = /new/"-->
<!--#include file="newmenu.htm" -->
<!--#endif -->
But what I want to do if conditionally include a file if the query string doesn't begin with certain characters and I don't know the syntax for the "not equal to" (<> ? != ? Something else?) or the wildcard operator to use (* ? % ? . ? Something else?)
Anyone know?