标签: php dynamic mirror
我的位置/博客上的博客,内容是动态的。
我想在我的网站上使用/index.php来镜像/博客
如何编写index.php来镜像动态网页?
答案 0 :(得分:2)
你应该真正转发它,否则你会被搜索引擎发现重复内容。如果您对通过搜索找到您的内容的人感兴趣,这对您来说很重要。
index.php应该包含以下代码:
<?php header('Location: /blog', true, 301); exit; ?>