搜索引擎使用参数抓取网站
/?p=([0-9]+)
/?cat=([0-9]+)
/?do=([a-z]+)
ETC
如何在 .htaccess 中通知搜索引擎此类页面不再存在?
我只有 /?page=([0-9]+)
谢谢。
我试过
RewriteCond %{QUERY_STRING} ^(p|cat|do)(.*)$
RewriteRule ^$ http://test.com/simple [R=301,L]
但
http://test.com/?p=23 give me http://test.com/test?p=23 (not http://test.com/test)
http://test.com/?cat=11 give me http://test.com/test?cat=11 (not http://test.com/test)