Hi,
I have problem with redirect to other page.
Code that work fine on php as apache mode (1) don't want work correct on php as cgi over apache (2).
Then code is:
header ("Location: /newpage.php/1.0;var;value");
On php as apache mode page is loaded and url in browser is changed, but when I use too on php as cgi page is too loaded but url is don't changed.
example:
I have a.php - this is a form for edit on field from db.
I have too and do_a.php - this is a file that do action with db (insert, update or delete) and redirect to file c.php that make something.
on php as apache all is ok, when I submit form from file a.php that do_a.php work with db and redirect correct to c.php.
on php as cgi when I submit form from file a.php, do_a.php don't correct redirect to c.php. Exactly it redirect but url don't changed.
Someone can help me.