Posted by pkg on 02/24/07 20:35
> 1. redirect in the web server config (apache):
> Redirect permanent /abc/123.htmlhttp://www.mywebsite.de/xyz/987.html
Well, I don't want to bother the our webmasters with these things! And
I think they are the only persons who could change the web server
config ...
> 2. Use server side script (php):
> <?php header("Location:http://www.mywebsite.de/xyz/987.html"); ?>
as before
> 3. Use meta tag to redirect:
> <META http-equiv="refresh"
> content="0;URL=http://www.mywebsite.de/xyz/987.html">
This sounds as if I could do it without the web admins. Could you give
some more details what you mean? (you know, I have actually no
knowledge!)
> 4. Use some javascript to redirect:
> <body onload="document.location='http://www.mywebsite.de/xyz/987.html'">
Sounds good as well. Please give more details ( I don't "speak" java!)
pkg
[Back to original message]
|