这样的页面转向如何弄?

来源:百度知道 编辑:UC知道 时间:2024/06/28 00:15:56
我想找一个页面最好是html的(php的也行)。
能实现:要找的页面.html?url=要转向的地址,实现通过这个html页面转向到指定地址,这样做,为了能通过html页面统计到转向次数(在html页面加个统计,或者再加一个转向说明,所以最好能设置等待时间)。
谢谢各位,不知道我描述的清楚不清楚。

不好意思各位,N久没人回答,问题我自己解决了。分只好给自己了,不好意思了。
<script>
thisHREF = document.location.href;
tmpHPage = thisHREF.split( "分离标志" );

thisHPage = tmpHPage[ tmpHPage.length-1 ];

strwrite = thisHPage

document.write( strwrite );
setTimeout("location.replace(strwrite)",10000)
</script>