add nepalquake jump

This commit is contained in:
wlx 2015-04-27 03:39:48 +00:00
parent 6d76f8c22b
commit f9ab91cdc1
1 changed files with 12 additions and 0 deletions

View File

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