X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=run.php;h=20b3111120675cb5545c337015c0e65ed3fb571b;hb=f7f243ac52fea086657aca1b589018778d7198d6;hp=d3fab6bfc37defe7529c10f73c0293a5349a726e;hpb=5c420c3747d026ef4645283bff65d4413ade21a3;p=wfpl.git diff --git a/run.php b/run.php index d3fab6b..20b3111 100644 --- a/run.php +++ b/run.php @@ -53,8 +53,11 @@ # http://example.com/foo/bar.html # RewriteEngine on +# RewriteRule ^$ /foo/run.php # RewriteRule .*\.html$ /foo/run.php +require_once('code/wfpl/file_run.php'); + function run_php($basename = false) { if($basename) { $html_file = "$basename.html"; @@ -70,11 +73,15 @@ function run_php($basename = false) { if($php_file != $html_file && file_exists($php_file)) { require_once('code/wfpl/template.php'); if(file_exists($html_file)) tem_load($html_file); - require $php_file; + $other = file_run($php_file); + if($other) { + run_php($other); + return; + } if(file_exists($html_file)) tem_output(); } else { if(file_exists($html_file)) { - require $html_file; + readfile($html_file); } else { header('HTTP/1.0 404 File Not Found'); if(file_exists('404.php') || file_exists('404.html')) {