我需要将用户从页面资源/?group=168 重定向到资源/?group=205。
最好的方法是在 htaccess、php 重定向或可能在 index.php 中切换大小写?
我试过没有成功:
htaccess
Redirect resources/?group=168 http://www.site.com/resources/?group=205
机箱开关
switch ($id) { case '168': $id = 205; break;}
感谢您的任何建议。