代码之家  ›  专栏  ›  技术社区  ›  Andrew Truckle

获取regex重定向以适应可选文本

  •  0
  • Andrew Truckle  · 技术社区  · 6 年前

    所以,对于一些帮助主题,我有一系列regex重定向。

    例子:

    (?i)\/msa/HelpOnline/source/helpoptionsemailgoogle.htm$
    

    如果用户使用了 搜索选项卡 在旧的帮助系统中,单击上述主题的同一链接,得到的链接是:

    /msa/helponline/index.html?page=source/helpoptionsemailgoogle.htm
    

    因此,我有一个可能存在的URL选项位:

    /msa/helponline/[index.html?page=]source/helpoptionsemailgoogle.htm
    

    使用regex是否可以选择允许该文本,以便使用相同的重定向找到:

    /msa/helponline/source/helpoptionsemailgoogle.htm
    /msa/helponline/index.html?page=source/helpoptionsemailgoogle.htm
    

    我正在使用WordPress重定向插件,重定向将与WordPress一起存储。

    1 回复  |  直到 6 年前
        1
  •  0
  •   Andrew Truckle    6 年前

    这项工作:

    (?i)\/msa/HelpOnline/(index.html\?page=)?source/helpoptionsemailgoogle.htm$