Hi, i'm setting up a very simple static website on Pages. I have added an URL rewrite like below. It works but the change becomes visible for the user. What am I doing wrong?
Target path:
*/*
*/*
Rewrite to:
${1}.${2}.html
${1}.${2}.html
Example:
domain.com/path1/path2
domain.com/path1/path2
becomes
domain.com/path1.path2
domain.com/path1.path2
. I expected it to stay unchanged.
The rewrite works in the sense that the correct html file is shown (/path1.path2.html)