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.
このようにwildlfy 8のすべてのURLを書き換えたい
url/home/anything to URL/home/index.php?q=anything
これをundertow-handlers構成ファイルに書き込むにはどうすればよいですか。
現在、私のルールはこのようなものですが、これは機能していません。
regex['^/home/(.*)$'] -> rewrite['/home/index.php?q=${0}']
助けてください
Undertow Rewrite には、wildfly 8 でいくつかの問題があります regex['/home/(.*)$'] -> rewrite['/home/index.php?gender=men']。
regex['/home/(.*)$'] -> rewrite['/home/index.php?gender=men']
代わりに、以下に示すように渡す必要があります
set[attribute='%{q,gender}', value='men'];