on my shared server, I'm trying to create a custom 404 page. This particular host uses SHTML, and I cannot ReWrite..
I can display the uri:
<!--#echo var="REQUEST_URI" -->
I can make the URI a part of a variable:
<!--#set var="URI" value="404.php?xxx=$REQUEST_URI" -->
I can redirect to my own 404.php page:
<!--#exec cgi="404.php" -->
but I can't seem to put the URI variable's value into the redirect. None of these work:
<!--#exec cgi="404.php?xxx=$REQUEST_URI" -->
<!--#exec cgi="$URI" -->
<!--#exec cgi="URI" -->
any ideas that will work? Thanks in advance.