创建包含single.php模板标签的重定向页面

时间:2016-02-26 20:49:30

标签: php http-redirect

我想让每个访问过的单页首先重定向到template.php页面,该页面具有原始目标帖子永久链接,例如 AdFly缩短网址服务

至于现在它使用PHP header() Function。但我无法弄清楚如何将原始源页面固定链接包含在template.php

<?php
 header("HTTP/1.1 301 Moved Permanently");
 header("Location: http://www.yournewwebsite.com/template.php");
?>

1 个答案:

答案 0 :(得分:0)

您可以将链接作为参数传递到该位置。

header("HTTP/1.1 301 Moved Permanently");
header("Location: http://example.com/template.php?website=" . $_SERVER['REQUEST_URI']);

template.php中,只需执行$_GET['website']即可检索参数中传递的网址。