我需要以下链接
http://www.mydomain.com/search.php?t=football场比赛
看起来像:
http://www.mydomain.com/tag/football-games
有人可以帮忙吗
感谢
答案 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']); ?>