.htaccess; 301 重定向无效

.htaccess; 301 redirect not working

我在 .htaccess 中尝试了以下代码到 301 重定向 www.example.com/?content=file.php&id=16 www.example.com/file/This-is-the-title/16

RewriteEngine on
Redirect 301 /?content=file.php&id=16 /file/This-is-the-title/16

但它不是重定向。 URL保持原样。

我做错了什么?

P.S。我不是要求重写。我需要 301 重定向。

Redirect 指令与查询字符串不匹配。改用这个:

RewriteEngine on
RewriteCond %{QUERY_STRING} =content=file.php&id=16
RewriteRule ^$ /file/This-is-the-title/16? [R=301,L]