【发布时间】:2016-02-26 20:49:30
【问题描述】:
我想让每个访问的单个页面首先重定向到具有原始目标帖子永久链接的 template.php 页面,例如 AdFly 缩短网址服务。
目前它使用PHP header() Function 工作。但我不知道如何让原始源页面永久链接包含在 template.php 中
<?php
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://www.yournewwebsite.com/template.php");
?>
【问题讨论】:
-
例如,如果我转到
http://google.com,您想重定向到htttp://yourwebsite.com/template.php,那么它会将我重定向到google? -
@KayVan
blog.com/post_id=14重定向到blog.com/page.php,其中包含指向blog.com/post_id=14的链接
标签: php http-redirect