【问题标题】:Permanent (301) .htaccess redirect永久 (301) .htaccess 重定向
【发布时间】: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


    【解决方案1】:

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

    RedirectMatch 301 /form/5/.* www.example.com/form/12/name.html
    

    【讨论】:

    • 更好用:RedirectMatch 301 ^/form/5/ /form/12/name.html 目标中不需要完整的 URL。
    猜你喜欢
    • 2013-07-17
    • 2015-04-30
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2017-05-08
    • 1970-01-01
    • 2016-10-07
    相关资源
    最近更新 更多