Dot-Htaccess

高級重定向 301 htaccess

  • October 23, 2019

我需要通過重定向 301 htaccess 這個:

這些:

https://ejemplo.com/post-noticia/octubre-2019/122-nombre-de-mi-noticia

對此:

https://ejemplo.com/noticia/nombre-de-mi-noticia

我試過這個:

Redirect 301 /post-noticia/octubre-2019/ https://ejemplo.com/noticia/

但結果是:

https://ejemplo.com/noticia/122-nombre-de-mi-noticia

我需要的結果是:

https://ejemplo.com/noticia/nombre-de-mi-noticia

即省略:122-

謝謝

你試過Redirect 301 /post-noticia/octubre-2019/122- https://ejemplo.com/noticia/嗎?

如果122-是一個變數(你沒有給出線索),你必須使用接受正則表達式的RedirectMatch

RedirectMatch 301 "/post-noticia/octubre-2019/\d+-(.+)$" "https://ejemplo.com/noticia/$1"

或擺弄mod_rewrite

引用自:https://serverfault.com/questions/989081