Example #1
0
 public function redirect404()
 {
     $this->page = new Page($this->app);
     $this->page->setContentFile(__DIR__ . '/../../Errors/404.html');
     $this->addHeader('HTTP/1.0 404 Not Found');
     $this->send();
 }