怎么做一个网址,可以自动跳转到另一个网址?
这有几个办法: 1,使用后端跳转,如果是php的话: <?php header("location:url地址") ?> 例如 <?php header("location:helloworld.php")?>...
这有几个办法: 1,使用后端跳转,如果是php的话: <?php header("location:url地址") ?> 例如 <?php header("location:helloworld.php")?>...
这个方法很多啊,如果是同一个域名的话,那么可以用的方法有 1.cname解析 需要有域名解析权限,将xxx.com通过cname解析到 2.js跳转 通过语句window.location=""; 3.php跳转 通过语句hea...