Re: [問題] 自動跳轉頁
※ 引述《dcimumu (mumu)》之銘言:
: 請教各位大大,假如說我的網站是 http://mumu.com
: 是否能設定當打出http://mumu.com/s1時瀏覽器自動轉頁至http://mail.yahoo.com,
: s1只是一個字,不是htm檔。
: 我本來想用這個<meta http-equiv="refresh" content="2;URL=index.htm">,
: 可是這必須設定一個s1.htm,
: 另外轉址會出問題,瀏覽器會自動跳成:http://mumu.com/http://mail.yahoo.com
: 感激不盡!
如果你是有自己的 server 的話
修改 httpd.conf
加入一行
Redirect permanent /s1 http://mail.yahoo.com
如果是要在某個使用者下的話
Redirect permanent /~dinos/s1 http://mail.yahoo.com
若是要讓所有的找不到網頁(404錯誤)都轉向的話
ErrorDocument 404 http://mail.yahoo.com
如果不是自己的 server 的話
在 ~/s1/index.htm 裡寫入
<script language=javascript>
self.location='http://mail.yahoo.com';
</script>
<meta http-equiv="refresh" content="0;URL=" rel="nofollow">http://mail.yahoo.com">
或是在 ~/s1/index.php 裡只寫入
<?php
header("location: http://mail.yahoo.com");
?>
或 ~/s1/default.asp 裡只寫入
<%
response.redirect "http://mail.yahoo.com"
%>
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 140.113.158.10
Web_Design 近期熱門文章
PTT數位生活區 即時熱門文章