htaccess查询字符串将旧页面重定向到新页面

时间:2016-01-19 16:35:16

标签: string .htaccess redirect opencart

我读了很多但没有运气:(

所以它是这样的:

旧页面是这样的: http://www.website.co.uk/category/subcat/page.php?id=AB-GRKIS1515

现在需要将它们重定向到: http://www.website.co.uk/category/some-seoenabled-url

如果它对我使用Opencart的新页面有帮助。

似乎我需要使用htaccess查询字符串重定向,但我的所有尝试都失败了。

非常感谢,任何帮助!

1 个答案:

答案 0 :(得分:0)

在比利的帮助下找到的解决方案如下:

RewriteCond%{QUERY_STRING} ^ id = AB-GRKIS1515 $ RewriteRule(。*)http://www.website.co.uk/category/some-seoenabled-url? [R = 301,L]

今天超级开心; o)

亚历