recherche

Maison  >  Questions et réponses  >  le corps du texte

Comment Apache redirige-t-il 301 ? J'espère qu'il existe un didacticiel vidéo

Comment Apache redirige-t-il 301 ? J'espère qu'il existe un didacticiel vidéo

phpcn_u104617phpcn_u1046172533 Il y a quelques jours1283

répondre à tous(2)je répondrai

  • 寻觅 beyond

    寻觅 beyond2018-02-05 10:47:30

    Vous pouvez utiliser des en-têtes pour la redirection, vous pouvez également modifier le fichier de configuration Apache ou ajouter un fichier .htaccess

    répondre
    1
  • 寻觅 beyond

    寻觅 beyond2018-02-05 10:46:24

    <?php
    // 301 Déplacé de façon permanente
    header("Emplacement : /foo.php",TRUE,301);

    // 302 Trouvé
    header("Emplacement : /foo.php",TRUE,302) ;
    header("Emplacement : /foo.php");

    // 303 Voir Autre
    header("Emplacement : /foo.php",TRUE,303);

    // 307 Redirection temporaire
    header("Emplacement : /foo.php",TRUE,307);
    ?>

    répondre
    1
  • Annulerrépondre