我最近在我的网址中的查询字符串中更改了一个单词,导致查询中断,因此我希望将旧网址重定向到新网址。例如:
http://www.lovelakedistrict.com/result/?q=Windermere&result=2
新网址
http://www.lovelakedistrict.com/result/?q=Windermere&page=2
对于这个最好的解决方案是什么,无论如何在php中执行它还是htaccess规则?
答案 0 :(得分:2)
在页面顶部,您只需使用此修补程序:
if(isset($_GET['result']))$_GET['page']=$_GET['result'];
if(isset($_REQUEST['result']))$_REQUEST['page']=$_REQUEST['result'];