重定向到另一个保留查询数据和SEO流量信息的页面


Redirect to another page preserving query data and also SEO traffic information

我想从old.php?id=$post_id重定向到new.php?id=$post_id,我不想失去任何流量从搜索引擎等

所以是domain/old.php=1domain/new.php=1

帮忙吗?我不太懂php编程。

htacces吗?

流量与你的SEO管理方式有关。

要在PHP中重定向,你应该使用header函数。

header('Location: new.php?id=' . $_GET['id']);
http://php.net/manual/en/function.header.php