Use PHP to implement "wait for the specified time and then jump to the specified page".
That is, using php to implement and
in HTML
Same effect.
/**
@title:PHP scheduled jump
@Function: Wait for the specified time, and then jump to the specified page (replacing the html meta method)
*/
header("refresh:3;url=http://www.etoow.com");
print('Loading, please wait...
It will jump automatically in three seconds~~~');
/*
Additional explanation:
If the waiting time is 0, it is equivalent to header("location:").
*/
?>