我想让每个访问过的单页首先重定向到template.php页面,该页面具有原始目标帖子永久链接,例如 AdFly缩短网址服务。
至于现在它使用PHP header() Function。但我无法弄清楚如何将原始源页面固定链接包含在template.php
中<?php
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://www.yournewwebsite.com/template.php");
?>
答案 0 :(得分:0)
您可以将链接作为参数传递到该位置。
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://example.com/template.php?website=" . $_SERVER['REQUEST_URI']);
在template.php
中,只需执行$_GET['website']
即可检索参数中传递的网址。