Вообщем файл engine.php собирает сайт.
<?php
$ext=".html";
$hr = 'http://test.ai';
$tg = '_self';
if (file_exists($_SERVER['QUERY_STRING'].$ext)) {
include ('template/header.tpl');
include ('template/content.tpl');
include ($_SERVER['QUERY_STRING'].$ext);
include ('template/footer.tpl');
} else {
include ('404.html');
}
?>
и файл .htaccess
Options -Indexes
DirectoryIndex index.html
AddHandler server-parsed .html .htm
AddHandler application/x-httpd-php .php .html .htm
DirectorySlash Off
ErrorDocument 404 /404.html
ErrorDocument 403 /403.html
RewriteEngine On
RewriteBase /
#uncoment for site on PHP
RewriteRule ^$ engine.php?index [QSA,L]
RewriteRule ^(.*)/$ engine.php?$1/index [QSA,L]
RewriteRule ^(.*).(html)$ engine.php?$1 [QSA,L]
RewriteRule ^(([^/]+/)*[^.]+)$ /$1.html [L]
открываем сайт в chrome и открывается содержимое engine.php
хост фиговый hostinger.ru
помогите с проблемой.