https: // does not display correctly
-----
This is how the https redirect in my .htaccess file
PHP Code:
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
--------------- Added [DATE]1610679771[/DATE] at [TIME]1610679771[/TIME] ---------------
HTML Code:
<base href="http://www.ozaudi.com/forums/" /><!--[if IE]></base><![endif]-->
base url why http? why not https? see settings enter admincp change settings from http to https
--------------- Added [DATE]1610679945[/DATE] at [TIME]1610679945[/TIME] ---------------
There are multiple redirects in .htaccess. delete them, it will be easier if you add my above data.
PHP Code:
RewriteCond %{HTTP_HOST} ^ozbmw.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.ozbmw.com$
RewriteRule ^/?$ "http\:\/\/www\.ozbmw\.com\/forums\/index\.php" [R=301,L]
RewriteEngine On
RewriteCond %{HTTP_HOST} ozbmw\.com [NC]
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.ozbmw.com/$1 [R,L]
--------------- Added [DATE]1610680212[/DATE] at [TIME]1610680212[/TIME] ---------------
Must be RewriteBase if forum is not installed in root or installed in a separate folder
PHP Code:
RewriteBase /forum/