I used mode rewrite on my website
I used the base tag to solve my relative links problem
<base href="/" />
But the problem is absolute link eg. http://www.absolutelinks.com
It changes it to http://www.mysite.com/http://www.absolutelinks.com
How can i fix this
Base href applies only to the relative URL so if you have got:
<a href="http://google.com/">Google</a>you’ll be redirected to Google, nothttp://mydomain/http://google.com/. Please post the code of your HTML document.However using
baseisn’t the best practice. Much better approach is to use absolute URLs like:src="/styles/main.css"which always points tomydomain/styles/main.css.