adobe / aem-guides-wknd

Tutorial Code companion for Getting Started Developing with AEM Sites WKND Tutorial
https://experienceleague.adobe.com/docs/experience-manager-learn/getting-started-wknd-tutorial-develop/overview.html
MIT License
280 stars 531 forks source link

Rewrite rule enhencement #445

Open yjwu-leadstec opened 4 months ago

yjwu-leadstec commented 4 months ago

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"