nun eine Variante wäre die /index.php wie folgt zu ändern - ab Zeile 58
$smarty->caching = 0;
if (!defined(RM))
$smarty->load_filter('output', 'note');
$smarty->display(CURRENT_TEMPLATE.'/index.html');
ersetzen durch:
if ($_SERVER['REQUEST_URI'] != '/' && $_SERVER['REQUEST_URI'] != '/index.php') {
$smarty->display(CURRENT_TEMPLATE.'/index.html');
}
else {
$smarty->display(CURRENT_TEMPLATE.'/index_start.html');
}
naja, müsste gehen - "index_start.html" wäre dann Dein neues Startseiten-template
|