If we set "Search Engine Friendly URLs" in "Global Configuration setting" on "Yes" our joomla site not work properly.
it shows like this
is there any solution for this problem ?
Moderator: General Support Moderators
Code: Select all
<link rel="stylesheet" href="<?php echo $tmpTools->baseurl(); ?>templates/system/css/system.css" type="text/css" />
Code: Select all
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template;?>/css/template.css" type="text/css" />
Code: Select all
<link rel="stylesheet" href="templates/system/css/system.css" type="text/css" />
Code: Select all
var $live_site = 'http://www.your-domain-goes-here.com'; // no forward slash at the end
Thanks sir.DeanMarshall wrote:All you need to do is set the following line inside your configuration.php file:Add that line - or edit the existing one if it is present but set to empty (no value between quotes).Code: Select all
var $live_site = 'http://www.your-domain-goes-here.com'; // no forward slash at the end
If I'm understanding your problem correctly - that will solve it.
Dean
If you encounter problems, try modifying the $live_site setting in configuration.php. If Joomla! is installed in the root (ie, inside public_html or htdocs), set $live_site to / or http://www.example.com or http://example.com. If Joomla! is installed in a subdirectory (ie, /joomladir), set $live_site to /joomladir or http://www.example.com/joomladir or http://example.com/joomladir. See also Why does your site get messed up when you turn on SEF (Search Engine Friendly URLs)?