原始: http://www.example.com/sub-dir/index.php?id=1
定向后: http://www.example.com/path-to-new-location/
网上查找到的可以这么写,但是实际测试无效
RewriteEngine on RewriteCond %{QUERY_STRING} id=1 RewriteRule ^sub-dir/index\.php$ /path-to-new-location/? [L,R=301]
参考:Common .htaccess Redirects