怎么解决织梦移动端/m目录下index.html无法更新问题?

    怎么解决织梦移动端/m目录下index.html无法更新问题?把\m\index.php里面的:

    $row['showmod'] = isset($row['showmod'])? $row['showmod'] : 0;

    if ($row['showmod'] == 1)

    {

       $pv->SaveToHtml(dirname(__FILE__).'/index.html');

       include(dirname(__FILE__).'/index.html');

       exit();

    } else {

       $pv->Display();

       exit();

    }

    改为:

    $pv->Display();

    exit();