htaccess php从url重定向到另一个url?

时间:2013-09-01 21:45:55

标签: php .htaccess seo

我需要以下链接

http://www.mydomain.com/search.php?t=football场比赛

看起来像:

http://www.mydomain.com/tag/football-games

有人可以帮忙吗

感谢

1 个答案:

答案 0 :(得分:0)

如果您想在php中执行此操作,请将其放在search.php中:

<?php header('Location: http://www.yoursite.com/tag/football-games'); ?>

或者,要自动重定向到标记的任何内容:

<?php header('Location: http://www.yoursite.com/tag/'.$_GET['t']); ?>