Hello everyone,
I have a URL for example "http://help-forums.adobe.com/content/adobeforums:test/" when I provide this URL in href, the output that i get is "http://help-forums.adobe.com/content/_adobeforums_test/".
More Details:
Suppose properties.link = http://help-forums.adobe.com/content/adobeforums:test/
<a href="${properties.link @ context='unsafe'}">Support </a> //this doesn't work
but if i append .html at the end of the URL it works.
<a href="${properties.link @ context='unsafe'}.html">Support </a> //this works
Why doesn't it work when we don't have .html in the URL?