mam jedno pytanie odnośnie tego wielgachnego skryptu

mam taki .htaccess:
RewriteEngine On
RewriteBase /
RewriteRule ^$ index.php?rewrite=true&startpage=initialize [L]
RewriteRule ^order\/([a-z-]+)\.html$ modules/grupowe/orders.website.php?rewrite=true&action=$1 [QSA]
RewriteRule ^newsletter\/([a-z-]+)\.html$ modules/grupowe/newsletter.website.php?rewrite=true&action=$1 [QSA]
Rewriterule ^voucher,([a-zA-Z0-9]+),([a-zA-Z0-9]+)\.html$ voucher.php?rewrite=true&hidden=true&link=$1&id=$2 [QSA]
RewriteRule ^oferta\/zakonczone\/([^.]+)\/([^.]+) modules/grupowe/items.website.php?rewrite=true&action=view-ended&category=$1&title=$2&content=aktualne [L]
RewriteRule ^oferta\/([^.]+)\/([^.]+) modules/grupowe/items.website.php?rewrite=true&action=view&category=$1&title=$2&content=aktualne [L]
RewriteRule ^([^.]+)\/oferty\/$ modules/grupowe/items.website.php?rewrite=true&action=list&category=$1&content=aktualne [QSA]
RewriteRule ^([^.]+)\/zakonczone\/$ modules/grupowe/items.website.php?rewrite=true&action=list-ended&category=$1&ended=true&content=zakonczone-oferty [QSA]
RewriteRule ^item,preview,([^.]+).html modules/grupowe/items.website.php?rewrite=true&action=preview&title=$1 [L]
RewriteRule ^admin\/$ admin/start.html [R=301,L]
RewriteRule ^admin\/([^.]+)\/([^.]+)\/([^.]+)\/$ admin.php?rewrite=true&folder=$1&module=$2&action=$3 [QSA]
RewriteRule ^admin\/([^.]+)\/([^.]+)\/$ admin.php?rewrite=true&module=$1&action=$2 [QSA]
RewriteRule ^admin\/([a-z-]+)\.html$ admin.php?rewrite=true&command=$1 [QSA]
#RewriteRule ^sitemap\.xml$ sitemap.php?rewrite=true [L]
RewriteRule ^users\/([a-z-]+)\.html$ modules/users/users.php?rewrite=true&action=$1 [QSA]
RewriteRule ^news\/([^.]+),([a-zA-Z0-9]+)\.html$ modules/news/news.website.php?rewrite=true&action=view&ident=$2 [L]
RewriteRule ^([a-z-]+)\.html$ content.php?rewrite=true&content=$1 [QSA]
RewriteRule ^rss\/([a-z-]+)\.html rss.php?category=$1 [L]
w index.php mam coś takiego:
if((isset($_GET['startpage'])) AND
($_GET['startpage']=="initialize")): $kernel->setAdmin( false );
$_GET['content'] = "/";
if($_SESSION['config']['service_blocked'] == "TRUE"):
$smarty->display(APP_PATH . "templates/website/blocked.smarty");
endif;
$kernel->redirect(APP_URL . "aktualne.html");
endif;
pliku aktualne.html nie mam na dysku jak listuje pliki także on jakoś się generuje automatycznie, a jest to główna strona jaka się pokazuje po wpisaniu domeny. czyli www.domena.pl/aktualne.html
czy jesteście mi w stanie pomóc na podstawie tego kodu co pokazałem czy coś mam wrzucić więcej.
z góry dzięki.