问题标签 [locationmatch]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
0 回答
27 浏览

regex - 阿帕奇订单和正则表达式

我已经尝试了几天,也许我在某种程度上错了。我正在尝试根据最终 url 更改标头,但第一个捕获组始终相同,/folder碰巧 Apache 只是使用我在 Apache 文档中看到的最后一条规则,这似乎是正常行为。

这是当前的情况:

我得到了三个网址:

index, follow必须应用于/folder(根),/folder/private但其他必须在noindex, nofollow

这些是当前配置中的正则表达式:

也许我使用了错误的正则表达式?没有想法...

谢谢!

0 投票
0 回答
5 浏览

apache - apache LocationMatch中的多个单词

我需要阻止包含特定单词的 URL,这些单词可能在 URL 中的任何地方。例如:www.mytest.de/main/ :aaa或www.mytest.de/:aaa/main 所以我需要阻止所有包含 :aaa 的 URL。:bbb 和 :ccc 也是如此。

并非所有包含“:”的 URL 都应该被阻止,只有特定的 URL。

所以我加了

怎么可能把这一切都放在一行中,例如:

谢谢