有人知道如何将某人从 example.com/2458/233 之类的页面重定向到 example2.com/2458/233 吗?在第一个 url 上,只有一个文件正在重定向到另一个域。有人知道怎么做吗?更好的解释:我们有一个 URL example.com/222/222,我只想要一个索引文件,它会采用 /222/222 并重定向到 example2.com/222/222
2 回答
互换的青春
TA贡献1797条经验 获得超6个赞
将此命名为“index.php”。
编辑您要重定向到的页面的位置。
将其保存到要从中发送的目录。
<?php
/* no one should be here, send them away! */
exit(header("Location: ../"));
?>
添加回答
举报
0/150
提交
取消