blob: 79002291665407f930d180b6ab5133d9aa9834d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<?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);
}
}
|