13 lines
274 B
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/");
|
||
|
}
|
||
|
}
|
||
|
|