我正在尝试通过我的html页面重定向我的子域名是index.html,我不希望用户看到我重定向的位置所以我想我可以使用带有URL掩码的iframe重定向
但它没有正常工作。你能解决这个问题吗......这是代码。
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
<title>WebMail</title>
<meta name="description" content="Mail">
<meta name="keywords" content="mail">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-23441223-3']);
_gaq.push(['_setDomainName', 'none']);
_gaq.push(['_setAllowLinker', true]);
_gaq.push(['_trackPageview']);
(function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<frameset rows="100%">
<frameset cols="100%">
<frame src="http://google.com" frameborder="0" scrolling="no">
</frameset>
</frameset>
</html>
请告诉我是否还有其他简单的步骤,例如使用.htaccess等。
答案 0 :(得分:1)
<body style="height:100%;margin:0;padding:0;">
<iframe width=100% height=100% src="http://google.com"></iframe>
试试,祝你好运