当我们访问一个URL,任意的URL可以是域名,IP等等
只需要在访问的web 服务器上的index.html中写入如下代码就可以实现任意的跳转,还可以指定端口
:
<script language="javascript">
document.location.href = "http://example.com:6080/";
</script>
如果你的网站首页不是index.html,是index.php
也可以在index.php添加代码实现域名跳转。
<script language="javascript">
document.location.href ="http://www.k3ex.com";
</script>
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。