如果来源有 .html,如何使用 .htaccess 在 Wordpress 网站之间重定向

如果来源有 .html,如何使用 .htaccess 在 Wordpress 网站之间重定向

如果原点有 .html,如何使用 .htaccess 在 Wordpress 网站之间重定向第一个网站我使用永久链接 .html 示例:

www.domain.com/articles/content.html

如果我想使用 301 重定向到新网站

www.newdomain.com/content(不含 .html)

有人能给我一些建议吗?谢谢

答案1

您可以在 .htaccess 文件中简单地使用: Redirect 301 /old/old.htm http://www.newdomen.com/new
或者使用 RewriteEngine:

RewriteEngine   on
RewriteBase     /
RewriteRule     ^articles\/(.*)\.html$  $1 [R=301]

相关内容