Reputation: 312
I'm trying to build a website (it's not my first time), using latest version of Joomla! (3.8.10), but I have a problem - tabs in the main menu don't work. When I try to go to other page, I have an error:
ERR_TOO_MANY_REDIRECTS
I almost solved this problem by changing:
$sef="1"
to
$sef="0"
in configuration.php
, but it caused strangely long addresses.
Upvotes: 3
Views: 8090
Reputation: 312
Ok, I found the solution. Need to add:
$_SERVER['HTTPS']='on';
in index.php
file, behind the <?php
Maybe someone will use it.
Upvotes: 6
Reputation: 1126
This is most likely a problem with your .htaccess file.
When you change $sef=0, you are basically telling the system to not use your .htaccess file.
I suggest backing up your current one and replacing with the default Joomla one. It is the one that comes in the download package and is named htaccess.txt. Upload and rename to .htaccess to overwrite existing.
Upvotes: 0