原始:
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]
1
oott123 2015-09-29 13:07:41 +08:00 via Android
RewriteEngine on
RewriteRule ^sub-dir/index\.php$ /path-to-new-location/?%{QUERY_STRING} [L,R=301] |