使用 ID 号 htaccess 重定向 301 Urls

Redirect 301 Urls with id number htaccess

我有这样的网址

https://www.example.co.uk/382-princeton-teak-6ft-garden-bench-chinoiserie-bench.html

我想重定向到

https://www.example.co.uk/princeton-teak-6ft-garden-bench-chinoiserie-bench.html

我试过 RedirectMatch 301 ^/(.+?)([0-9]+)-(.*)\.html$ /.html 它确实匹配但是它重定向到 https://www.example.co.uk/3.html 大家有什么想法吗?

您应该使用此规则,因为数字就在开头:

RedirectMatch 301 ^/[0-9]+-(.+\.html)$ /

清除浏览器缓存以测试此更改。