PHP header(Location: …): Force URL change in address bar

后端 未结 14 1625
失恋的感觉
失恋的感觉 2020-11-28 08:10

I\'m currently working on a mobile site with authentication using PHP sessions with a database. I have a login page with a form that goes to server_login.php

14条回答
  •  难免孤独
    2020-11-28 08:32

    you may want to put a break; after your location:

    header("HTTP/1.1 301 Moved Permanently");
    header('Location:  '.  $YourArrayName["YourURL"]  );
    break;
    

提交回复
热议问题