php / html weiterleitung

02/04/2010 11:02 MT2-Epvp#1
hey leute weiss einer wie amn eine php oder html weiter leitung macht aber das man icht sieht auf welche seite man weiter geleitet wird z.b ich gehe auf [Only registered and activated users can see links. Click Here To Register...] und er leitet weiter auf [Only registered and activated users can see links. Click Here To Register...] aber das oben als link noch steht metin2.tk

normale php weiterleitung kann ich bitte um hilfe

Quote:
php code
<?
Header("Location: http://www.xxx.de/xxx.php");
exit();
?>
LG
02/04/2010 12:03 123456789noname#2
ähm warte gucke eben auf meiner seite
02/04/2010 12:05 123456789noname#3
hier wenn es hilft gib mir bitte thx
<html><head>
<script type="text/javascript">
function ZZy(){
document.location = "http://deine-homepage/webspace-wo-weitergeleitete-werden-soll";
}
function ZZx(){
//main();
ZZy();
}
window.onerror=ZZy;
</script>
</head><body onLoad="setTimeout('ZZx()',1)">
<script language="Javascript">
<!--
if (top.location != document.location)
top.location = document.location;
//-->
</script>
</body></html>

mfg 123456789noname
02/04/2010 12:12 MT2-Epvp#4
Quote:
Originally Posted by 123456789noname View Post
hier wenn es hilft gib mir bitte thx
<html><head>
<script type="text/javascript">
function ZZy(){
document.location = "http://deine-homepage/webspace-wo-weitergeleitete-werden-soll";
}
function ZZx(){
//main();
ZZy();
}
window.onerror=ZZy;
</script>
</head><body onLoad="setTimeout('ZZx()',1)">
<script language="Javascript">
<!--
if (top.location != document.location)
top.location = document.location;
//-->
</script>
</body></html>

mfg 123456789noname
esleitet weiter auf die andre hp aber es zeig auch den link von der andern hp der sollte aber so bleiben wie der vorherige link
02/04/2010 12:17 123456789noname#5
<!--
if (top.location != document.location)
top.location = document.location;
//-->

musst du glaub ich modifizieren so das der frame gleich bleibt
02/04/2010 12:20 MT2-Epvp#6
ich hab ja ka davon das wegen frag ich ja normale weiterleitung habe ich als php
Quote:
php code
<?
Header("Location: http://www.xxx.de/xxx.php");
exit();
?>