I have successfully embedded a PHP bbs script into an shtml template using the include virtual SSI function, the only problem is that the bbs script uses PHP_SELF values for links. This means that when a link is clicked the PHP script refers only to itself and the shtml template is lost.
For example a link might be:
http://www.mydomain.com/bbs_script.php?thread=12345
when what I need is:
http://www.mydomain.com/bbs_template.shtml?thread=12345
Is this possible? Any help appreciated.