Home  >  Article  >  Backend Development  >  在本站内可以直接用URI跳转吗

在本站内可以直接用URI跳转吗

WBOY
WBOYOriginal
2016-06-06 20:21:561056browse

在PHP中可以直接使用URI进行在本站中各个文件夹中进行跳转吗?还是非得使用URL呢?

回复内容:

在PHP中可以直接使用URI进行在本站中各个文件夹中进行跳转吗?还是非得使用URL呢?

可以使用URI跳转,
eg:

//跳转到相同目录3.php
header("Location:3.php");
//跳转到上一目录1219文件夹1.php
header("Location:../1219/1.php");

在本站内可以直接用URI跳转吗

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn