Feb 15 2009
∞
.cgiとかをトップにしたり.htaccess以外でリダイレクトしたり
index.cgiをトップで表示させるには
.htaccessに
DirectoryIndex index.cgi index.html
.htaccessが使えないレンサバでリダイレクトするには
普通は.htaccessに
Redirect permanent / http://www.example.com/
とすれば良いが,infoseekの様なうんこサーバーだと.htaccessにRedirectが 使えないので,index.htmlを以下の様な内容にしてしまい,無理矢理飛ばすしかない.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="Content-Script-Type" content="text/javascript" />
<title>Like@Lunatic トップページへ</title>
<script type="text/javascript">
location.replace('http://likealunatic.jp/')
</script>
<meta http-equiv="Refresh" content="0; URL=http://likealunatic.jp/;" />
</head>
<body>
<noscript>
<p><a href="http://likealunatic.jp/">Like@Lunatic トップページへ</a></p>
</noscript>
</body>
</html>