ich hatte mal ein anders Forum gehabt. Und nun ja das Phpbb.
Wie bekomme ich es nun gepacken von,
Code: Alles auswählen
http://domain.xy/apboard/thread.php?id=9057
Code: Alles auswählen
http://domain.xy/phpBB2/viewtopic.php?t=9057
LG René
Code: Alles auswählen
http://domain.xy/apboard/thread.php?id=9057
Code: Alles auswählen
http://domain.xy/phpBB2/viewtopic.php?t=9057
Code: Alles auswählen
<?php
if ( isset($HTTP_GET_VARS['id']) ) {
header("Location: <Deine_URL>/viewtopic.php?t=" . $HTTP_GET_VARS['id']);
}
?>
Gruß, Olli
$id = $_GET['id'];
header("Status: 301 Moved Permanently");
header("Location: http://domain.xy/phpBB2/viewtopic.php?t=$id");
Code: Alles auswählen
RewriteRule ^(.*) http://www.domain.de/keyword/$1 [R=301,L]
da shabe ich schon in der art.S2B hat geschrieben:Wie wär's denn mit einem einfachen Redirect?