apache 中的 Htaccess 重定向

Htaccess redirections in apache

我试图在 .htaccess 文件中执行以下永久重定向,但我无法使它们工作。你能帮帮我吗?

非常感谢。此致!

重定向是这些:

http://www.mapfre.com.pa/productos/#39 to https://www.mapfre.com.pa/seguros-pa/seguros/seguros-salud/

http://www.mapfre.com.pa/productos#36 to https://www.mapfre.com.pa/seguros-pa/seguros/seguros-auto/

http://www.mapfre.com.pa/?post_type=corporativo&p=21 to https://www.mapfre.com.pa/seguros-pa/sobre-mapfre-panama/historia/

无法为带有锚点的 URL 进行服务器端重定向 #

最后一个可以按这个规则来做:

RewriteEngine on
RewriteCond %{QUERY_STRING} ^post_type=corporativo&p=21$
RewriteRule ^$ /seguros-pa/sobre-mapfre-panama/historia/ [R=301,L]