【PHP】常用的header头部定义

<?php
header('HTTP/1.1 200 OK'); // ok 正常访问
header('HTTP/1.1 404 Not Found'); //通知浏览器 页面不存在
header('HTTP/1.1 301 Moved Permanently'); //设置地址被永久的重定向 301

猜你喜欢

转载自blog.csdn.net/weiguang102/article/details/125994233