.htaccess 重写示例.com/store/page.html 到域.com/page.html

.htaccess rewrite example.com/store/page.html to domain.com/page.html

刚刚将网站迁移到不同的平台。

旧站点的网址类似于

https://www.example.com/store/product.html

https://www.example.com/store/product2.html

https://www.example.com/store/product3.html

新站点的网址类似于

https://www.example.com/product.html

https://www.example.com/product2.html

https://www.example.com/product3.html

如何使用 htaccess 将旧网址 301 重定向到新网站的新布局格式?

你可以把这个规则放在你的 htaccess 中,它应该在根文件夹中

RewriteEngine On
RewriteRule ^store/([^/]+\.html)$ / [R=301,L]