如何从 URL 中删除数字?

如何从 URL 中删除数字?

我有一个 wordoress 网站,其中 URL 中包含 /1。我检查了 siteurl、homeurl、permalinks,但不确定为什么 URL 中添加了 /1

例如https://example.com/consulting/strategic-marketing/1/wp-content/themes/cubemanagement/favicon.ico

正确的 URL 应该是https://example.com/wp-content/themes/cubemanagement/favicon.ico

我该如何设置重定向?我尝试过以下方法,但没有成功

  1. RewriteRule ^(.+?)-\d+/?$ /$1 [L,R=302]
  2. RewriteRule ^$/$/1/$ https://www. example.com/ [L,R=301]
  3. RewriteRule ^(.*)/(.*)/1/$ https://www.example.com/ [L,R=301]

相关内容