这是 Gatekeeper 的一个版本,我试图让它进入我网站的子域,但它只进入我主域上的特定文件。基本上我输入 404,它带我去:http://mysite.com/404.html我希望它去:http:// subdomain .mysite.com/404.html我对此有点陌生,但是我觉得我需要改变
如果(密码){ this.location.href = 密码 + ".html"; }
this.location.href 没有读取我当前的 url,而是我特别想要的 url。
这是完整的示例代码:
<HTML>
<HTML>
<HEAD>
<TITLE>My Page</TITLE>
<SCRIPT language="JavaScript"><!--
/*********************************************************
GateKeeper v2.3 - by Joe Barta
http://www.pagetutor.com/keeper/
Permission is granted to freely use this script.
**********************************************************/
function GateKeeper() {
var password = prompt("Password required:", "");
if (password) { this.location.href = password + ".html"; }}
//--></SCRIPT>
</HEAD>
<BODY>
<A HREF="javascript:{;}" onClick="GateKeeper(); return false">Click here</A> for my secret page!
</BODY>
</HTML>
有什么想法或建议吗?提前致谢!