in reply to Re^2: Need help with redirect
in thread Need help with redirect
I think what you're trying to do (using a HTTP redirection header with SSI) isn't going to work that way. I don't usually use SSI, but I think the additional magic in the handling of content vs. headers that would be required here simply isn't implemented with most web servers.
Essentially, there are three ways to redirect:
You could try method 2, though, if you really need to embed the script's output into some HTML page via SSI. Using <meta http-equiv="refresh" ...>, the redirect instruction becomes part of the HTML page, which you've already begun outputting, when the SSI instruction is being encountered.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Need help with redirect
by ikegami (Patriarch) on Jun 02, 2009 at 02:03 UTC | |
|
Re^4: Need help with redirect
by MatthewV (Acolyte) on Jun 02, 2009 at 02:04 UTC | |
by almut (Canon) on Jun 02, 2009 at 02:39 UTC |