如何将一堆旧URL重定向(301)到新的URL?

时间:2014-08-27 17:55:19

标签: .htaccess url redirect

我有一堆旧网址需要重定向(301)到新网址。我会写

Redirect 301 /old-url http://www.example.net/new-url

每次重定向到.htaccess。但是有没有更好的解决方案,也许使用RewriteMap?

1 个答案:

答案 0 :(得分:0)

php重定向将起作用

更多信息请访问www.php.net/manual/en/function.header.php

<?php
header('location:http://www.yoursite.com/whereve');
?>