3 # Copyright (C) 2006 Jason Woofenden
5 # This file is part of wfpl.
7 # wfpl is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2, or (at your option)
12 # wfpl is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 # General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with wfpl; see the file COPYING. If not, write to the
19 # Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
23 # This file facilitates making a site with mixed PHP and html files. All URLs
24 # have the .html extension. One benefit of this is that you can change static
25 # html files to php scripts without having to update links.
27 # This script will pull the filename from the URL. It looks for a file with
28 # that name, and for one with the same basename, but with the .php extension
29 # and acts accordingly:
31 #--------------------------------------------#
32 # | .php file exists | no .php file #
33 #--------+--------------------+--------------#
34 # .html | load html file as | pass html #
35 # file | a template and run | file through #
36 # exists | run the php file | as is #
37 #--------+--------------------+--------------#
39 # .html | run php file | display 404 #
41 #--------------------------------------------#
45 # To activate this script in a directory, you'll need to:
47 # 1) make a symbolic link to (or copy of) this file in your directory. and
49 # 3) Set your webserver to run this script instead of html files. Here's how to
50 # do that with apache: put something like the following in you your .htaccess
51 # file (where /foo/ is the part of the url between the hostname and the
52 # filename.) The example below would work for this url:
53 # http://example.com/foo/bar.html
56 # RewriteRule ^$ /foo/run.php
57 # RewriteRule .*\.html$ /foo/run.php
59 require_once('code/wfpl/file_run.php');
61 function run_php($basename = false) {
63 $html_file = "$basename.html";
64 $php_file = "$basename.php";
66 $html_file = $_SERVER['REDIRECT_URL'];
67 $html_file = ereg_replace('.*/', '', $html_file);
68 if($html_file == '') {
69 $html_file = 'index.html';
71 $php_file = ereg_replace('\.html$', '.php', $html_file);
73 if($php_file != $html_file && file_exists($php_file)) {
74 require_once('code/wfpl/template.php');
75 if(file_exists($html_file)) tem_load($html_file);
76 $other = file_run($php_file);
81 if(file_exists($html_file)) tem_output();
83 if(file_exists($html_file)) {
86 header('HTTP/1.0 404 File Not Found');
87 if(file_exists('404.php') || file_exists('404.html')) {
90 echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html><head><title>404</title></head><body><h1>404 File Not Found</h1></body></html>';