0

我需要来自这些页面的 301 重定向:

form/5/asd.html
form/5/12dasd.html
form/5/dasidjasd.html
form/5/pasd1.html

一直到这个页面:/form/12/name.html

你能帮我吗,因为我从来不理解 .htaccess 重定向:(

4

1 回答 1

2

将 RedirectMatch 与通配符一起使用,并记住在指定重定向到的位置时使用完整的 URL:

RedirectMatch 301 /form/5/.* www.example.com/form/12/name.html
于 2014-08-01T13:25:48.850 回答