Posted by Alice on 04/29/07 03:43
How can I make php script serve up an *.html file 'server-parsed' for SSI's?
The goal is to pre-process all *.html files with php script, but the SSI's
need to be handled too. Problem with using 'virtual' is that it creates a
loop via the .htaccess handler setting/action.
..htaccess
# Enable SSI
Options +Includes
# HTML Handler
AddHandler HTML .html
Action HTML /HTML.php
HTML.php
<?PHP
<snip>
$file = $_SERVER['PATH_TRANSLATED'];
include $file;
?>
[Back to original message]
|