2/19/2008 2:22 PM UTC
xb2net & rewritten/redirected URLs
Thomas Braun

Hi,
I'm currently using Alaskas LoadFromURL()function to send data via
"POST"-method to a php-based web application.
This normally works quite good, but now I did some tests with an
Apache-based web server where all HTTP-URLs are redirected to HTTPS via
mod_rewrite rule:
^/(.*)$ https://www.mydomain.de/$1 [nocase,R]
The problem in this case seems to be that LoadFromURL does not send the
POST data again after being redirected to the new URL, so the following PHP
code outputs an empty array:
<?php
var_dump($_POST);
?>
Does anybody know if this works with xb2net?
regards
Thomas