"php实现301跳转"
Published on Aug. 22, 2023, 12:09 p.m.
<?php
header(‘HTTP/1.1 301 Moved Permanently’);//发出301头部
header(‘Location:sign.php?example=login’);//跳转到登录页面
Published on Aug. 22, 2023, 12:09 p.m.
<?php
header(‘HTTP/1.1 301 Moved Permanently’);//发出301头部
header(‘Location:sign.php?example=login’);//跳转到登录页面