Dot-Htaccess
高級重定向 301 htaccess
我需要通過重定向 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。