扫码关注官方订阅号
apache怎么301重定向希望有视频教程
重定向可以使用header,也可以使用修改apache的配置文件或者添加一个.htaccess文件
<?php// 301 Moved Permanentlyheader("Location: /foo.php",TRUE,301);// 302 Foundheader("Location: /foo.php",TRUE,302);header("Location: /foo.php");// 303 See Otherheader("Location: /foo.php",TRUE,303);// 307 Temporary Redirectheader("Location: /foo.php",TRUE,307);?>
微信扫码关注PHP中文网服务号
QQ扫码加入技术交流群
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
PHP学习
技术支持
返回顶部
重定向可以使用header,也可以使用修改apache的配置文件或者添加一个.htaccess文件
<?php
// 301 Moved Permanently
header("Location: /foo.php",TRUE,301);
// 302 Found
header("Location: /foo.php",TRUE,302);
header("Location: /foo.php");
// 303 See Other
header("Location: /foo.php",TRUE,303);
// 307 Temporary Redirect
header("Location: /foo.php",TRUE,307);
?>