How does apache redirect 301? I hope there is a video tutorial
phpcn_u104617
phpcn_u104617 2018-02-04 00:40:01
0
2
1280

How does apache redirect 301? I hope there is a video tutorial

phpcn_u104617
phpcn_u104617

reply all(2)
寻觅 beyond

You can use header for redirection, you can also modify the apache configuration file or add a .htaccess file

寻觅 beyond

<?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);
?>

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template