انجمن متا: طراحی سایت و سئو - دانلود قالب و تم - کریپتو

کامپیوتر، اینترنت، شبکه، مدیریت محتوا، تم => CMS => مدیریت محتوای Joomla => نويسنده: متا در بعد از ظهر 19:10:16 - 06/09/17

عنوان: فعال کردن SSL در جوملا
رسال شده توسط: متا در بعد از ظهر 19:10:16 - 06/09/17
فعال کردن SSL در جوملا - آموزش فعال کردن SSL در جوملا و مخصوصا قالب های اسمارت ادونس.
(http://images.smartaddons.com/smartaddons/images/userguide/Joomla/sj-how-to-uses-SSL/global.png)
(http://images.smartaddons.com/smartaddons/images/userguide/Joomla/sj-how-to-uses-SSL/edit.png)
(http://images.smartaddons.com/smartaddons/images/userguide/Joomla/sj-how-to-uses-SSL/sj-tekmag2.png)

Next, you open "configuration.php" file

    Find the following line:
      public $live_site ='';

       
      public $live_site ='';
     
    Replace with:
     public $live_site = 'https://www.your-domain.com';

       
     public $live_site = 'https://www.your-domain.com';
     

Next, open ".htaccess file" then add the following code to the bottom of the file.

    RewriteEngine On
    RewriteCond %{HTTPS} OFF
    RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}

       
    RewriteEngine On
    RewriteCond %{HTTPS} OFF
    RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}

(http://images.smartaddons.com/smartaddons/images/userguide/Joomla/sj-how-to-uses-SSL/https2.png)