/var/www/error/noindex.html
網站還沒有做好,可以先做一個簡單的轉發。
下面寫的比較詳細了。
If you install the Apache web server on your Fedora system, start it,
and then access it before adding any content, you'll see the "Fedora
Test Page" or "Welcome Page" as shown here. Where does this page come
from, where is it configured, and how does it disappear once you add
content?
This page clearly isn't configured in the main Apache configuration file, /etc/httpd/conf/httpd.conf -- there is no mention of it there at all. Instead, the configuration for this page is actually specified in /etc/httpd/conf.d/welcome.conf, which looks like this:
#
# This configuration file enables the default "Welcome"
# page if there is no default index page present for
# the root URL. To disable the Welcome page, comment
# out all the lines below.
#
<LocationMatch "^/+$">
Options -Indexes
ErrorDocument 403 /error/noindex.html
</LocationMatch>
The LocationMatch
directive ensures that this configuration applies only to requests with
a path of / (or multiple slashes), which matches only requests to the DocumentRoot (http://ServerName/). For any such request, the Indexes option is disabled, so you cannot get an automatic index or directory listing. If a pre-built index page exists, such as index.html or index.html.var, that file is served; but if it doesn't exist, an HTTP 403 error is generated ("Forbidden"). The ErrorDocument directive specifies the page to be served in that case: /var/www/error/noindex.html. As soon as you create an index page, the 403 error is no longer generated, and the Welcome page disappears.
The configuration file /etc/httpd/conf.d/welcome.conf is owned by the httpd (Apache) package. Most of the other configuration files located in /etc/httpd/conf.d are owned by web application packages such as webalyzer, BackupPC, gallery2, or squirrelmail,
and specifically configure Apache for that one application; removing
the package removes the corresponding configuration file, removing the
application-specific Apache configuration.
. 在<head></head>區域加入代碼:
<meta http-equiv=Pragma content=no-cache>
<Meta http-equiv="refresh" content="3;url='http://hi.baidu.com/jadmin' ">
2. 使用JavaScript代碼:
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
redirTime = "3000";
redirURL = "http://hi.baidu.com/jadmin";
function redirTimer() { self.setTimeout("self.location.href = redirURL;",redirTime); }
// End -->
</script>
<body onLoad="redirTimer()">
3. 使用JavaScript代碼:
<html><head><title>稍候。。。</title></head>
<body>
<script language='javascript'>document.location = 'http://hi.baidu.com/jadmin'</script>
</body>
</html>
4. 帶進度條的頁面跳轉代碼代碼:
<html>
<head>
<meta http-equiv="Content-Language" content="zh-cn">
<meta HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=gb2312">
<title>帶進度條的頁面跳轉代碼</title>
</head>
<body>
<form name=loading>
<P align=center>
<FONT face=Arial color=#0066ff size=2>loading...</FONT>
<INPUT
style="PADDING-RIGHT: 0px; PADDING-LEFT: 0px; FONT-WEIGHT: bolder;
PADDING-BOTTOM: 0px; COLOR: #0066ff; BORDER-TOP-style: none;
PADDING-TOP: 0px; FONT-FAMILY: Arial; BORDER-RIGHT-style: none;
BORDER-LEFT-style: none; BACKGROUND-COLOR: white; BORDER-BOTTOM-style:
none" size=46 name=chart>
<BR>
<INPUT
style="BORDER-RIGHT: medium none; BORDER-TOP: medium none; BORDER-LEFT:
medium none; COLOR: #0066ff; BORDER-BOTTOM: medium none; TEXT-ALIGN:
center" size=47 name=percent>
<SCRIPT>
var bar=0
var line="││"
var amount="││"
count()
function count(){
bar=bar+2
amount =amount + line
document.loading.chart.value=amount
document.loading.percent.value=bar+"%"
if (bar<99)
{setTimeout("count()",100);}
else
{window.location = "http://hi.baidu.com/jadmin";}
}
</SCRIPT>
</P>
</form>
</body>
</html>