Tagged Questions

0
votes
2answers
59 views

Is it possible to set some http headers while http-redirect(302 or 307)?

Is it possible to set some http headers while http-redirect(302 or 307)? <? header("some-header: xxx"); header("Location: http://other.domain.com/foo.php",TRUE,307); ?>
0
votes
4answers
430 views

http, https & ajax bypass, maybe?

I have a server script that I need to pass data to from the browser without reloading the page (aka ajax). The data is sensitive so should be sent via https. The page however is on the http layer. ...