rejetto forum
Software => HFS ~ HTTP File Server => HTML & templates => Topic started by: raybob on April 30, 2011, 08:01:17 PM
-
Can you make it so that there is a way to post variables to a page that is getting redirected to?
Here's an example of what I'm talking about:
{.redirect|http://www.domain.tld|variablename=content.}
-
add variables inside url
{.redirect|http://www.domain.tld/?variablename=content&variable2=content2&variable3=....... .}
-
I know you can do that, but for certain things I would much rather use posted variables rather than URL variables, which is why I wrote this.
-
http redirection is only GET, no POST.
if you strictly need POST only thing you can do is outputting a page with an automatic POST via javascript.
-
Ok thanks I didn't know it was a limit of http itself . . .