某些旧网站使用的网址如下:
domain.com/website?content=http//www.seconddomain.com/view/info/page.html?www.domain.com,0,123,444,123
我想在新页面上进行重定向,例如:
Redirect 301 domain.com/website?content=http//www.seconddomain.com/view/info/page.html?www.domain.com,0,123,444,123 /category/page-name.html
但那不起作用,所以我不得不使用别的东西。最好的方法是什么?我只需要一些带有各种字符的完整网址(如questionmark,dot,逗号)重定向到我要写的新网址。
答案 0 :(得分:1)
你可以尝试:
RewriteEngine On
RewriteCond %{QUERY_STRING} ^content=http//www.seconddomain.com/view/info/page\.html
RewriteRule ^website$ /category/page-name.html [L,R=301]