Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のルールを実装しようとしています。
location ~ ^/stylesheets|javascripts|assets/
ただし、次のものと一致しています:
mysite.com/something/something/javascripts
私の考えでは、この単純な正規表現は一致するだけでした。
mysite.com/javascripts
ネストを無視したいのですが、何が問題なのですか?
OR された式をグループ化する必要があります。^/(stylesheets|javascripts|assets)/
^/(stylesheets|javascripts|assets)/
それ以外の場合は、わずかに異なる 3 つの潜在的な一致があります。
/stylesheets
javascripts
assets/