hasen's tech life

Twitter: @hasen

.htaccessでのリダイレクトができないので,PHPファイルで対応した.

# .htaccessでのリダイレクトができないので,PHPファイルで対応した.

$ vi public/index.php
++ header( "HTTP/1.1 301 Moved Permanently" );
++ header('Location: https://XXX.com');
++ exit;