我有一堆旧网址需要重定向(301)到新网址。我会写
Redirect 301 /old-url http://www.example.net/new-url
每次重定向到.htaccess。但是有没有更好的解决方案,也许使用RewriteMap?
答案 0 :(得分:0)
php重定向将起作用
更多信息请访问www.php.net/manual/en/function.header.php
<?php
header('location:http://www.yoursite.com/whereve');
?>