Hi i have joomla 3.x installed with ssl. Now my problem is when some one visit my website with https://www.mydomain.com it shows untrusted connection. I want to redirect the page when some one enter's my site with www to nonwww https://mydomain.com/ Can some one please guide me how to do that. Thanks in advance.
You can try to add the following code in your server's .htaccess file: RewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC] RewriteRule ^(.*)$ https://%1/$1 [R=301,L] Code (markup):