westdc-zf1/application/default/controllers/NepalquakeController.php

13 lines
274 B
PHP

<?php
class NepalquakeController extends Zend_Controller_Action
{
function indexAction()
{
$this->_helper->ViewRenderer->setNoRender();
$this->_helper->layout->disableLayout();
$this->_redirect("http://nepalquake.westgis.ac.cn/");
}
}