X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=run.php;h=8d8d1dfcda0fd6db30d58d2bf068b413a60fba0a;hb=e2adfcf23a88f95e7c5f6611889665cf0782fe74;hp=c8eeb106d8d9974eada7b704f141467d0c254e81;hpb=5253f43e816e213374ee0f453ab1905e9cf663f4;p=wfpl.git diff --git a/run.php b/run.php index c8eeb10..8d8d1df 100644 --- a/run.php +++ b/run.php @@ -42,20 +42,32 @@ -# To activate this script in a directory, you'll need to put something like the -# following in you your .htaccess file (where /foo/ is the part of the url -# between the hostname and the filename.) The example below would work for this -# url: http://example.com/foo/bar.html +# To activate this script in a directory, you'll need to: +# +# 1) make a symbolic link to (or copy of) this file in your directory. and +# +# 3) Set your webserver to run this script instead of html files. Here's how to +# do that with apache: put something like the following in you your .htaccess +# file (where /foo/ is the part of the url between the hostname and the +# filename.) The example below would work for this url: +# http://example.com/foo/bar.html # RewriteEngine on # RewriteBase /foo/ -# RewriteRule .*\.html$ /foo/code/wfpl/run.php +# RewriteRule .*\.html$ /foo/run.php -function run_php() { - chdir('../..'); - $html_file = $_SERVER['REDIRECT_URL']; - $html_file = ereg_replace('.*/', '', $html_file); - $php_file = ereg_replace('\.html$', '.php', $html_file); +function run_php($basename = false) { + if($basename) { + $html_file = "$basename.html"; + $php_file = "$basename.php"; + } else { + $html_file = $_SERVER['REDIRECT_URL']; + $html_file = ereg_replace('.*/', '', $html_file); + if($html_file == '') { + $html_file = 'index.html'; + } + $php_file = ereg_replace('\.html$', '.php', $html_file); + } if($php_file != $html_file && file_exists($php_file)) { require_once('code/wfpl/template.php'); if(file_exists($html_file)) tem_load($html_file); @@ -66,7 +78,11 @@ function run_php() { require $html_file; } else { header('HTTP/1.0 404 File Not Found'); - echo '404

404 File Not Found

'; + if(file_exists('404.php') || file_exists('404.html')) { + run_php('404'); + } else { + echo '404

404 File Not Found

'; + } } } }