301 or 302 Redirection With PHP

后端 未结 6 1283
长情又很酷
长情又很酷 2020-12-07 20:04

I\'m considering using the following code during a website launch phase to show users a down for maintenance page while showing me the rest of the site.

Is

6条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-07 20:24

    The following code will issue a 301 redirect.

    header('Location: http://www.example.com/', true, 301);
    exit;
    

提交回复
热议问题