6 lines
113 B
PHP
6 lines
113 B
PHP
|
|
<?php
|
||
|
|
// Redirect /contact to /quote
|
||
|
|
header('HTTP/1.1 301 Moved Permanently');
|
||
|
|
header('Location: /quote');
|
||
|
|
exit;
|