Href without http(s) prefix
It’s possible, and indeed you’re doing it right now. It just doesn’t do what you think it does. Consider what the browser does when you link to this: href=”https://stackoverflow.com/questions/43803778/index.html” What then would it do when you link to this?: href=”https://stackoverflow.com/questions/43803778/index.com” Or this?: href=”www.html” Or?: href=”www.index.com.html” The browser doesn’t know what you meant, it only knows … Read more