Home Page Https

I changed into "header.inc.php" and "$ site ['url'] =" https://msite.com/ "but when I'm on the home page I" http: / /mysite.com "instead of automatically" https://mysite.com "for such administration

 

unless I click on a module "video, sound, home page, blog, I https being on the home page or another page http

Quote · 7 Aug 2015

You'll need to also set a .htaccess redirect to HTTPS.

BoonEx Certified Host: Zarconia.net - Fully Supported Shared and Dedicated for Dolphin
Quote · 7 Aug 2015

There are topics in the forum dealing with SSL; do some searches and you should find the help you need.

Geeks, making the world a better place
Quote · 7 Aug 2015

After you've done all that, clear your browser cache, history and cookies..

In most computer-based web browsers, to open menus used to clear your cache, cookies, and history, press Ctrl-Shift-Delete (Windows) or Command-Shift-Delete (Mac)

"Your future is created by what you do today, not tomorrow." @ www.dexpertz.net
Quote · 8 Aug 2015

To force all web traffic to use HTTPS insert the following lines of code in the .htaccess file in your website’s root folder.

Important:If you have existing code in your .htacess, add this above where there are already rules with a similar starting prefix.

RewriteEngine On 
RewriteCond %{SERVER_PORT} 80 
RewriteRule ^(.*)$ https://www.yourdomain.com/$1 [R,L]

Be sure to replace www.yourdomain.com with your actual domain name.

To force a specific domain to use HTTPS, use the following lines of code in the .htaccess file in your website's root folder:

RewriteEngine On 
RewriteCond %{HTTP_HOST} ^example\.com [NC]
RewriteCond %{SERVER_PORT} 80 
RewriteRule ^(.*)$ https://www.yourdomain.com/$1 [R,L]

Make sure to replace example\.com with the domain name you're trying force to https. Additionally, you need to replace www.yourdomain.com with your actual domain name.

If you want to force SSL on a specific folder you can insert the code below into a .htaccess file placed in that specific folder:

RewriteEngine On 
RewriteCond %{SERVER_PORT} 80 
RewriteCond %{REQUEST_URI} folder 
RewriteRule ^(.*)$ https://www.yourdomain.com/folder/$1 [R,L]

Make sure you change the folder reference to the actual folder name. Then be sure to replace www.yourdomain.com/folder with your actual domain name and folder you want to force the SSL on.

Proud Hosted by Zarconia.net
Quote · 8 Aug 2015

Thank youCool

Quote · 8 Aug 2015
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.