My Homepage URL is //localhost:8090 it will run index.html with main.js
If the URL is changed to //localhost:8090/icons/sample.png. I have to redirect the user to previous page as //localhost:8090.
I tried:
main.js
if(window.location.href.indexOf("icons") > -1)
{
window.history.back();
}
It doesn't work. The page simply display the image.