更改引用网址中的单词以指向正确的网页

时间:2010-09-01 12:53:41

标签: php .htaccess redirect

我最近在我的网址中的查询字符串中更改了一个单词,导致查询中断,因此我希望将旧网址重定向到新网址。例如:

http://www.lovelakedistrict.com/result/?q=Windermere&result=2

新网址

http://www.lovelakedistrict.com/result/?q=Windermere&page=2

对于这个最好的解决方案是什么,无论如何在php中执行它还是htaccess规则?

1 个答案:

答案 0 :(得分:2)

在页面顶部,您只需使用此修补程序:

if(isset($_GET['result']))$_GET['page']=$_GET['result'];
if(isset($_REQUEST['result']))$_REQUEST['page']=$_REQUEST['result'];