I have the following base:
<base href="http://example.com:8080/en/" target="_self">
If locale is default then it becomes:
<base href="http://example.com:8080/" target="_self">
And I have logo image with root path
<a href="/"><img src="logo.jpg"></a>
The idea is when user clicks on logo he goes to main page. Main page can be requested or this way http://example.com:8080/
for default locale or this way http://example.com:8080/en/
for locale en
.
However, when <base href="http://example.com:8080/en/" target="_self">
and user clicks on logo he goes to http://example.com:8080/
but not to http://example.com:8080/en/
. Is it possible to set root path "/" according to base href?