“PHP przekieruj na inną stronę” Kod odpowiedzi

PHP przejdź do innej strony

  <?php header("Location: anotherDirectory/anotherFile.php"); ?>
Tender Tarantula

Lokalizacja nagłówka w PHP

<?php
/*
	This will redirect  to facebook.com
*/
$url = "https://facebook.com.com";
header("Location: $url");  
exit;
?>
Mr. Samy

PHP przekieruj na inną stronę

if (/*Condition to redirect*/){
  //You need to redirect
  header("Location: http://www.yourwebsite.com/user.php"); /* Redirect browser */
  exit();
 }
else{
  // do some
}
Blushing Batfish

PHP przekieruj na inną stronę

<?php header("Location: $url"); ?>
Code runner

Jak zrobić przekierowanie w PHP?

header("Location: http://example.com/redirect_page.php");
die(); //Force the script to quit, or you would raise an error...
Matteoweb

Przekierowanie PHP

<?php header ("location: http://domain.com/"); ?>
Marcus Pereira

Odpowiedzi podobne do “PHP przekieruj na inną stronę”

Pytania podobne do “PHP przekieruj na inną stronę”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu