This powerful plugin simplifies website maintenance by automatically converting absolute paths (URLs) for resources like links, scripts, stylesheets, and images to relative paths. This ensures your website functions flawlessly regardless of its location on a server or domain.
I noticed that if there are links pointing back to the site root, the href attribute of these links is set to an empty string:
<a href="">
The expected behavior would be that it would be a single forward slash:
<a href-"/">
As a result of this problem, such a link which is intended as a link to the site root ends up functioning as a link to the current page.