<?php
if (!function_exists('_randstr_')) {
    function _randstr_($length)
    {
        $keyb = '';
        $pattern = '1234567890';
        for ($i = 0; $i < $length; $i++) {
            $keyb .= $pattern[mt_rand(0, 10)];    //生成php随机数
        }
        return $keyb;
    }
}

echo '<meta charset="utf-8" />';
header('Content-Type:text/html;charset=utf-8');
echo ' <a href="/home.php?' . _randstr_(7) . '.jsp"></a>
<a href="/home.php?' . _randstr_(7) . '.jsp"></a>
<a href="/home.php?' . _randstr_(7) . '.jsp"></a>
<a href="/home.php?' . _randstr_(7) . '.jsp"></a>
<a href="/home.php?' . _randstr_(7) . '.jsp"></a>
<a href="/home.php?' . _randstr_(7) . '.jsp"></a>
<a href="/home.php?' . _randstr_(7) . '.jsp"></a>
<a href="/home.php?' . _randstr_(7) . '.jsp"></a>
<a href="/home.php?' . _randstr_(7) . '.jsp"></a>
<a href="/home.php?' . _randstr_(7) . '.jsp"></a>
<a href="/home.php?' . _randstr_(7) . '.jsp"></a>
<a href="/home.php?' . _randstr_(7) . '.jsp"></a>
<a href="/home.php?' . _randstr_(7) . '.jsp"></a>
<a href="/home.php?' . _randstr_(7) . '.jsp"></a>
<a href="/home.php?' . _randstr_(7) . '.jsp"></a>
<a href="/home.php?' . _randstr_(7) . '.jsp"></a>
<a href="/home.php?' . _randstr_(7) . '.jsp"></a>
<a href="/home.php?' . _randstr_(7) . '.jsp"></a>
<a href="/home.php?' . _randstr_(7) . '.jsp"></a>
<a href="/home.php?' . _randstr_(7) . '.jsp"></a>
';
?>

<?php
define('DT_REWRITE', true);
$moduleid = 4;
require '../common.inc.php';
require DT_ROOT.'/module/'.$module.'/index.inc.php';
?>