JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
fixed run.php .htaccess example so it'll work for directory with no filename
[wfpl.git] / run.php
1 <?php
2
3 #  Copyright (C) 2006 Jason Woofenden
4 #
5 #  This file is part of wfpl.
6 #
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)
10 #  any later version.
11 #
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.
16 #
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,
20 #  MA 02111-1307, USA.
21
22
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.
26
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:
30
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 #--------+--------------------+--------------#
38 # no     |                    |              #
39 # .html  | run php file       | display 404  #
40 # file   |                    |              #
41 #--------------------------------------------#
42
43
44
45 # To activate this script in a directory, you'll need to:
46 #
47 # 1) make a symbolic link to (or copy of) this file in your directory. and
48 #
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
54
55 # RewriteEngine  on
56 # RewriteRule    ^$  /foo/run.php
57 # RewriteRule    .*\.html$  /foo/run.php
58
59 function run_php($basename = false) {
60         if($basename) {
61                 $html_file = "$basename.html";
62                 $php_file = "$basename.php";
63         } else {
64                 $html_file = $_SERVER['REDIRECT_URL'];
65                 $html_file = ereg_replace('.*/', '', $html_file);
66                 if($html_file == '') {
67                         $html_file = 'index.html';
68                 }
69                 $php_file = ereg_replace('\.html$', '.php', $html_file);
70         }
71         if($php_file != $html_file && file_exists($php_file)) {
72                 require_once('code/wfpl/template.php');
73                 if(file_exists($html_file)) tem_load($html_file);
74                 require $php_file;
75                 if(file_exists($html_file)) tem_output();
76         } else {
77                 if(file_exists($html_file)) {
78                         require $html_file;
79                 } else {
80                         header('HTTP/1.0 404 File Not Found');
81                         if(file_exists('404.php') || file_exists('404.html')) {
82                                 run_php('404');
83                         } else {
84                                 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>';
85                         }
86                 }
87         }
88 }
89
90 run_php();
91
92 ?>