09/10/14 23:45:45 0
>>249
ご丁寧にindex.htmlを指定されてもindex.htmlなしになるように
例えばhtmlでphpが動くようにして以下の記述を書けば問題なくね?
<?php
if($_SERVER["REQUEST_URI"] == "/index.html"){
header("HTTP/1.1 301 Moved Permanently");
header("Location: URLリンク(www.example.com)");
exit();
}
?>