そのページが作成されると、別のページにリダイレクトする保持ページがあります。
現時点での私の解決策は、保持ページを 5 秒ごとに更新し、新しいページが作成されたかどうかを毎回確認することです。問題は、ページがちらつくことです。
ヘッダーの単純な while ループでこれを行う方法はありますが、保持ページの html を表示します。ありがとう。現在のコードは以下です。
<?php
ob_start();
$id = escapeshellarg($_GET['id']);
$id = str_replace("'", "", $id);
$url = 'http://sub.testxxx.com/'. $id . '/index.html';
$handle = @fopen($url,'r');
if(!$handle) {
header("Refresh: 5; url=http://testxxx.com/loading.php?id=".$id);
ob_flush;
} else {
sleep(5);
header("Location: http://sub.testxxx.com/".$id);
}
?>
<html>
...........
</html>
<?
ob_flush;
?>