bei den links musste dann nur noch die seite mit übergeben ;)
<a href=news.php?site=members>asdasd</a>
news.php
------------------
<html>
<head>
</head>
<body>
<?
$allowed = array('members', 'joinus', 'fightus', 'irc', 'sponsoren' usw....);
if (in_array($_GET['site'], $allowed)) {
include $_GET['site'].'.html';
} else {
header("location: www.deinedomain.de");
}
</body>
</html>
-------------------------------
gruss chris