Re: Serve html file parsed for ssi
- From: Jerry Stuckle <jstucklex@xxxxxxxxxxxxx>
- Date: Sun, 29 Apr 2007 18:15:34 -0500
Alice wrote:
I'm not the machine admin. So I don't know how I would be able to configure Apache to parse html files through both.
There has got to be a way to do this.
"Jerry Stuckle" <jstucklex@xxxxxxxxxxxxx> wrote in message news:VuednZKYPYvINqnbnZ2dnUVZ_uTinZ2d@xxxxxxxxxxxxxxAlice wrote:How can I make php script serve up an *.html file 'server-parsed' for SSI's?A terrible approach. But just set your Apache configuration up to parse html files through both.
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;
?>
Try alt.apache.configuration for more info.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@xxxxxxxxxxxxx
==================
Actually, I must modify my statement. The correct way is to have a .php extension for those files which have PHP, and .html or .shtml extension for those which have html only (depending on your server configuration). Use SSI in your .(s)html files and php in your .php files.
But you seem to be stuck with a mishmash of both. So handling it in your Apache configuration is the better way to go.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@xxxxxxxxxxxxx
==================
.
- References:
- Serve html file parsed for ssi
- From: Alice
- Re: Serve html file parsed for ssi
- From: Jerry Stuckle
- Re: Serve html file parsed for ssi
- From: Alice
- Serve html file parsed for ssi
- Prev by Date: Re: Serve html file parsed for ssi
- Next by Date: Problem When Serializing Array With Multiline Text
- Previous by thread: Re: Serve html file parsed for ssi
- Next by thread: One Global Connection vs. Open-Close
- Index(es):
Relevant Pages
|