Skip to main content
added 34 characters in body
Source Link
webchun
  • 2.4k
  • 15
  • 32

This is probably because of incorrect <base> tag value that is auto generated by Joomla in multi language setup when SEF and URL Rewriting are ON. You can fix it by removing the Joomla generated <base> tag and then adding a new one manually.

Open your template's index.php file, inside the <head> tag, after the <jdoc:include type="head" /> add this code :

<?php $doc = JFactory::getDocument(); unset($doc->base); ?> <base href="<?php echo JURI::root(); ?>"> 

Tested with Joomla 3.6.5

This is probably because of incorrect <base> tag value that is auto generated by Joomla in multi language setup. You can fix it by removing the Joomla generated <base> tag and then adding a new one manually.

Open your template's index.php file, inside the <head> tag, after the <jdoc:include type="head" /> add this code :

<?php $doc = JFactory::getDocument(); unset($doc->base); ?> <base href="<?php echo JURI::root(); ?>"> 

Tested with Joomla 3.6.5

This is probably because of incorrect <base> tag value that is auto generated by Joomla in multi language setup when SEF and URL Rewriting are ON. You can fix it by removing the Joomla generated <base> tag and then adding a new one manually.

Open your template's index.php file, inside the <head> tag, after the <jdoc:include type="head" /> add this code :

<?php $doc = JFactory::getDocument(); unset($doc->base); ?> <base href="<?php echo JURI::root(); ?>"> 

Tested with Joomla 3.6.5

added 24 characters in body
Source Link
webchun
  • 2.4k
  • 15
  • 32

This is probably because of incorrect <base> tag value that is auto generated by Joomla in multi language setup. You can fix it by removing the Joomla generated <base> tag and then adding a new one manually.

Open your template's index.php file, inside the <head> tag, after the <jdoc:include type="head" /> add this code :

<?php $doc = JFactory::getDocument(); unset($doc->base); ?> <base href="<?php echo JURI::root(); ?>"> 

Tested with Joomla 3.6.5

This is probably because of incorrect <base> tag value that is auto generated by Joomla. You can fix it by removing the Joomla generated <base> tag and then adding a new one manually.

Open your template's index.php file, inside the <head> tag, after the <jdoc:include type="head" /> add this code :

<?php $doc = JFactory::getDocument(); unset($doc->base); ?> <base href="<?php echo JURI::root(); ?>"> 

Tested with Joomla 3.6.5

This is probably because of incorrect <base> tag value that is auto generated by Joomla in multi language setup. You can fix it by removing the Joomla generated <base> tag and then adding a new one manually.

Open your template's index.php file, inside the <head> tag, after the <jdoc:include type="head" /> add this code :

<?php $doc = JFactory::getDocument(); unset($doc->base); ?> <base href="<?php echo JURI::root(); ?>"> 

Tested with Joomla 3.6.5

Source Link
webchun
  • 2.4k
  • 15
  • 32

This is probably because of incorrect <base> tag value that is auto generated by Joomla. You can fix it by removing the Joomla generated <base> tag and then adding a new one manually.

Open your template's index.php file, inside the <head> tag, after the <jdoc:include type="head" /> add this code :

<?php $doc = JFactory::getDocument(); unset($doc->base); ?> <base href="<?php echo JURI::root(); ?>"> 

Tested with Joomla 3.6.5