Redirect

T

Thomas Müller

Hallo,

I like to set a redirect:

<head>
<meta http-equiv="refresh" content="1; URL=meineSeite.html">
</head>

The redirect works, but it actualizes and actualizes and actualizes... That
means the screen is flattering.

What's wrong?

Thanks in advance,

Tom
 
B

Bernhard Sturm

Thomas said:
I like to set a redirect:

<head>
<meta http-equiv="refresh" content="1; URL=meineSeite.html">
</head>

The redirect works, but it actualizes and actualizes and actualizes... That
means the screen is flattering.

I am flattered :)
Where does your meineSeite.html point to, and from what URL are you
doing the redirect?

bernhard
 
T

Thomas Müller

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>

Thanks,

Tom
 
J

Jonathan N. Little

Thomas said:
Hello,

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]
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,780
Messages
2,569,611
Members
45,276
Latest member
Sawatmakal

Latest Threads

Top