作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我有一个 first.php
带有
header("Location: script/script1.php")
和script1.php
还有一个
header("Location: first.php")
但它显然将我发送到 /script/first.php
.有没有办法将其重定向到 <root>/first.php
而不是 <root>/script/first.php
?
最佳答案
试试这个:
header("Location: ../first.php")
或者改用绝对路径或 url。
说明:..
是用于“父目录”的 unix/linux 表达式。互联网是 unix 领域,所以规则也适用于那里。
关于PHP 如何将标题定位到父目录中的页面?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13366217/
我是一名优秀的程序员,十分优秀!