Since i switched all the website in https, URL looks like if SEF is disabled. But the plugin " System - SEF " is enabled.
I am using last joomla version 3.8.5.
I cleared cache and nothing changed.
In file configuration.php, i set $live_site and nothing changed.
Code: Select all
$live_site = 'https://mynpo.org';
What am i forgotting ?
It was working before.
Bellow my apache vhost declaration :
Code: Select all
<VirtualHost myipaddr:443>
ServerName mynpo.org
## Vhost docroot
DocumentRoot "/var/www/mynpo.org"
<Directory "/var/www/mynpo.org">
AllowOverride All
Require all granted
</Directory>
## Logging
ErrorLog "/var/log/apache2/https_mynpo.org_error_ssl.log"
ServerSignature Off
CustomLog "/var/log/apache2/https_mynpo.org_access_ssl.log" combined
## SSL directives
SSLEngine on
SSLCertificateFile "/etc/letsencrypt/live/mynpo.org/fullchain.pem"
SSLCertificateKeyFile "/etc/letsencrypt/live/mynpo.org/privkey.pem"
SSLCACertificatePath "/etc/ssl/certs"
php_value memory_limit "256M"
php_value post_max_size "11M"
php_value upload_max_filesize "10M"
php_flag magic_quotes_gpc off
php_flag zlib.output_compression on
</VirtualHost>