ch1p_io_web/engine/RedirectResponse.php
Evgeny Zinoviev f7bfdf58de initial
2022-07-09 19:40:17 +03:00

11 lines
244 B
PHP

<?php
class RedirectResponse extends Response {
public function __construct(string $url) {
parent::__construct(301);
$this->addHeader('HTTP/1.1 301 Moved Permanently');
$this->addHeader('Location: '.$url);
}
}