Zend框架 - 如何告诉好看的网址去静态网址?

I have this following routing. How to tell /nice-looking-url to load /home/www/html/project/public/static/index.html which is not in the Controller

$route = Http\Literal::factory(array(
  'route' => '/nice-looking-url',
  'defaults' => array(
    'controller' => 'Application\Controller\Nicelookingurl',
    'action' => 'index'
  ),
));
$router->addRoute('nicelookingurl', $route, null);

The simple way to do so is to add this line

return $this->renderScript('insert-your-script-path-here');

as first line in your Nicelookingurl index action

If you want to disable the layout you can also add

$this->_helper->layout()->disableLayout();