Heim > Backend-Entwicklung > PHP-Tutorial > PHP跳转代码的实现方法讲解_PHP教程

PHP跳转代码的实现方法讲解_PHP教程

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Freigeben: 2016-07-15 13:32:07
Original
1026 Leute haben es durchsucht

PHP跳转代码默认文档设置1 :

  1.  ?php   
  2. switch ($_SERVER["HTTP_HOST"])   
  3. {   
  4. case "www.a.com":   
  5. header("location:a/index.php");   
  6. break;   
  7. case "www.b.com":   
  8. header("location:b/index.php");   
  9. break;   
  10. case "www.c.com":   
  11. header("location:c/index.php");   
  12. break;   
  13. }   
  14. ?>   


PHP跳转代码默认文档设置2 :
 

<ol class="dp-xml">
<li class="alt"><span><span class="tag"><span> ?php  </span></span></span></li>
<li>
<span>$</span><span class="attribute">HTTP_HOST</span><span>=$_SERVER['HTTP_HOST'];   </span>
</li>
<li class="alt">
<span>if(($</span><span class="attribute">HTTP_HOST</span><span>=="a.com")or<br>($</span><span class="attribute">HTTP_HOST</span><span>=="www.a.com"))  </span>
</li>
<li><span>{Header("Location:/index.html"); }  </span></li>
<li class="alt">
<span>elseif(($</span><span class="attribute">HTTP_HOST</span><span>=="b.net")or<br>($</span><span class="attribute">HTTP_HOST</span><span>=="www.b.net"))  </span>
</li>
<li><span>{Header("Location: /kangbite/"); }  </span></li>
<li class="alt">
<span>elseif(($</span><span class="attribute">HTTP_HOST</span><span>=="c.com")or<br>($</span><span class="attribute">HTTP_HOST</span><span>=="www.c.com"))  </span>
</li>
<li><span>{Header("Location: /c/"); }  </span></li>
<li class="alt"><span>else  </span></li>
<li><span>{}  </span></li>
<li class="alt">
<span class="tag">?></span><span>   </span>
</li>
</ol>
Nach dem Login kopieren

以上就是PHP跳转代码的具体代码实现方法。


www.bkjia.comtruehttp://www.bkjia.com/PHPjc/446165.htmlTechArticlePHP跳转代码默认文档设置1 : ?php switch($_SERVER[HTTP_HOST]) { casewww.a.com: header(location:a/index.php); break; casewww.b.com: header(location:b/index.php); break; case...
Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Aktuelle Ausgaben
PHP-Datenerfassung?
Aus 1970-01-01 08:00:00
0
0
0
PHP-Erweiterung intl
Aus 1970-01-01 08:00:00
0
0
0
Wie man PHP gut lernt
Aus 1970-01-01 08:00:00
0
0
0
Mehrere PHP-Versionen
Aus 1970-01-01 08:00:00
0
0
0
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage