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

How to reset your Linux password if lost

1. The startup menu is to move the cursor to the ...

Summary of MySQL date and time functions (MySQL 5.X)

1. MySQL gets the current date and time function ...

Docker-compose tutorial installation and quick start

Table of contents 1. Introduction to Compose 2. C...

CSS3 Bezier Curve Example: Creating Link Hover Animation Effects

We will use CSS3 animated transitions to create a...

How to locate MySQL slow queries

Preface I believe that everyone has had experienc...

Pure CSS to achieve left and right drag to change the layout size

Utilize the browser's non- overflow:auto elem...

Quick solution for forgetting MySQL8 password

Preface When we forget the MySQL database passwor...

jQuery implements percentage scoring progress bar

This article shares the specific code of jquery t...

Javascript closure usage scenario principle detailed

Table of contents 1. Closure 2. Closure usage sce...

Sample code for implementing the Olympic rings with pure HTML+CSS

Rendering Code - Take the blue and yellow rings a...