【发布时间】:2014-09-24 16:57:45
【问题描述】:
我需要来自这些页面的 301 重定向:
form/5/asd.html
form/5/12dasd.html
form/5/dasidjasd.html
form/5/pasd1.html
一直到这个页面:/form/12/name.html
你能帮我吗,因为我从来不理解 .htaccess 重定向:(
【问题讨论】:
标签: .htaccess redirect permanent
我需要来自这些页面的 301 重定向:
form/5/asd.html
form/5/12dasd.html
form/5/dasidjasd.html
form/5/pasd1.html
一直到这个页面:/form/12/name.html
你能帮我吗,因为我从来不理解 .htaccess 重定向:(
【问题讨论】:
标签: .htaccess redirect permanent
将 RedirectMatch 与通配符一起使用,并记住在指定重定向到的位置时使用完整的 URL:
RedirectMatch 301 /form/5/.* www.example.com/form/12/name.html
【讨论】:
RedirectMatch 301 ^/form/5/ /form/12/name.html 目标中不需要完整的 URL。