You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I found a small mistake from dispatcher/src/conf.d/rewrites/rewrite.rules line 31. I guess you intended to match ".html, .svg, .png", but because of the lack of an back escape, the rule also matched "ahtml, bsvg, cpng". It should add an escape character before the ".".
Expected Behaviour
match ".html, .svg, .png"
Actual Behaviour
also matched "ahtml, bsvg, cpng"
The text was updated successfully, but these errors were encountered:
I found a small mistake from dispatcher/src/conf.d/rewrites/rewrite.rules line 31. I guess you intended to match ".html, .svg, .png", but because of the lack of an back escape, the rule also matched "ahtml, bsvg, cpng". It should add an escape character before the ".".
Expected Behaviour
match ".html, .svg, .png"
Actual Behaviour
also matched "ahtml, bsvg, cpng"
The text was updated successfully, but these errors were encountered: