Zitat von
3_of_8:
Naja aber eine Session-ID muss ich trotzdem erstellen und mitgeben...
Wie gesagt, schreib dir n PHP-file, in dem du das umleitest. In etwa so:
Code:
<?php
$pattern = '...';
$params = urldecode($_SERVER['QUERY_STRING']);
$matches = array();
$redirect_url = '...';
if(preg_match($pattern, $params, $matches))
{
for($i = 1; $i <= <Anzahl>; $i++)
{
$redirect_url = str_replace('$' . $i, $matches[$i], $redirect_url);
}
header('Location: ' . $redirect_url);
}
else
{
header('Location: ' . '...');
}
?>
Das Ganze anpassen und als actions/write_article/index.php abspeichern. Dann sollte es funktionieren...
mfg
Christian