数ヶ月後、私はそれを手に入れました!!! ジュムラ!1.5.26 ファイル /libraries/joomla/application/application.php の 324 行目 次の行にコメントを付けます
/*
if (!$moved && strstr(strtolower($_SERVER['HTTP_USER_AGENT']), 'webkit') !== false) {
// WebKit browser - Do not use 303, as it causes subresources reload (https://bugs.webkit.org/show_bug.cgi?id=38690)
echo '<html><head><meta http-equiv="refresh" content="0;'. $url .'" /></head><body></body></html>';
}
else {
// All other browsers, use the more efficient HTTP header method
header($moved ? 'HTTP/1.1 301 Moved Permanently' : 'HTTP/1.1 303 See other');
header('Location: '.$url);
}
*/
そして残すだけ
// All other browsers, use the more efficient HTTP header method
header($moved ? 'HTTP/1.1 301 Moved Permanently' : 'HTTP/1.1 303 See other');
header('Location: '.$url);
Webkit のバグが解決されました。ここを確認してください:バグ 38690 - サーバー リダイレクトにつながる POST を送信すると、キャッシュされたすべてのアイテムが再ダウンロードされます