我们有这样的网址
- site_com/类别
- site_com/category?page=1
- site_com/category?page=2
第一个和第二个 URL 的页面是相同的。我需要301 redirect
从
?page=1
to创建/category
,除了“类别”是一个变量。
我试过这个:
RewriteCond %{REQUEST_URI} [a-z]
RewriteCond %{QUERY_STRING} ^page=1$
RewriteRule ^%1%2$ site_com/%1 [R=301,L]