X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=run.php;h=3eca719d96dcad15b698a0123855a2eedd6a6f87;hb=a4e42e7c89f4c256ff2512902fb539a2279785ce;hp=3a3d85a2d285e718437186d88f60c0f978bfcfd6;hpb=97722b7dc03c635483cf18bdeec9a8f18c1d7260;p=wfpl.git diff --git a/run.php b/run.php index 3a3d85a..3eca719 100644 --- a/run.php +++ b/run.php @@ -54,7 +54,9 @@ # RewriteEngine on # RewriteRule ^$ /foo/run.php -# RewriteRule .*\.html$ /foo/run.php +# RewriteRule ^/foo/[^/]*\.html$ /foo/run.php + +require_once('code/wfpl/file_run.php'); function run_php($basename = false) { if($basename) { @@ -71,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')) {