|
Posted by Jonathan N. Little on 04/24/07 15:19
Thomas Müller wrote:
> Hello,
>
>> Where does your meineSeite.html point to, and from what URL are you doing
> the redirect?
>
> in one directory I have a file new.html and a file meineSeite.html. In the
> file new.html I have the following HTML-script:
>
> <head>
> <meta http-equiv="refresh" content="1; URL=meineSeite.html">
> </head>
>
Don't know what "actualizes" means, possibly "reloads", and "flattering"
do you mean "flickering"? Do you have in meineSeite.html:
<meta http-equiv="refresh" content="1; URL=new.html"> and then you have
a loop?
new.html
^ |
| v
meineSeite.html
Anyway, a better way if your server is Apache is with an .htaccess file
#.htaccess to redirect new.html to meineSeite.html
RewriteEngine On
RewriteRule ^new.html meineSeite.html [L]
--
Take care,
Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
[Back to original message]
|