HTML page jump code

HTML page jump code
Save the following code as the default homepage file such as index.html and put it in the root directory.
Do not hide the redirected address
<html>
<head>
<title>Redirect</title>
<meta http-equiv="refresh" content="0;url=new site">
</head>
<body>
</body>
</html>
Hide redirect address
<html>
<head>
<title>Redirect</title>
</head>
<frameset framespacing="0" border="0" rows="0" frameborder="0">
<frame name="main" src="new site" scrolling="auto" noresize>
</frameset>
</html>

<<:  mysql implements adding time automatically adding and updating time automatically updating operation

>>:  Difference between querySelector and getElementById methods in JS

Recommend

MYSQL 5.6 Deployment and monitoring of slave replication

MYSQL 5.6 Deployment and monitoring of slave repl...

A complete list of common Linux system commands for beginners

Learning Linux commands is the biggest obstacle f...

HTML Basics: HTML Content Details

Let's start with the body: When viewing a web ...

Problems and solutions when installing MySQL8.0.13 on Win10 system

Operating system: Window10 MySQL version: 8.0.13-...

MySQL 8.0.12 Installation and Configuration Tutorial

This article records the detailed tutorial for in...

Learn Node.js from scratch

Table of contents url module 1.parse method 2. fo...

Detailed explanation of Nginx log customization and enabling log buffer

Preface If you want to count the source of websit...

Solution to MySQL Chinese garbled characters problem

1. The Chinese garbled characters appear in MySQL...

Introduction to setting up Tomcat to start automatically on Linux system

1. Enter the /etc/init.d directory: cd /etc/init....

Understanding and application of JavaScript ES6 destructuring operator

Table of contents Preface The role of deconstruct...

Introduction to new ECMAscript object features

Table of contents 1. Object properties 1.1 Attrib...

Nginx proxy forwarding implementation code uploaded by Alibaba Cloud OSS

Preface Because the mini program upload requires ...