1. Приветствуем Вас на нашем закрытом форуме для складчиков сайта cmsheaven.org. Если Вы частный вебмастер, фрилансер, владелец малого или среднего бизнеса, представитель студии по разработке сайтов - будем рады видеть Вас в наших рядах экономных людей.
    Регистрация на форуме возможна только после вступления в складчину

Joomla+SSL

Тема в разделе "Вопросы по Joomla CMS [тех. поддержка]", создана пользователем kosas, 26 июн 2015.

Статус темы:
Закрыта.
  1. kosas

    kosas Cкладчик

    Регистрация:
    25 фев 2015
    Сообщения:
    20
    Симпатии:
    9
    Всем привет.

    Сложилась такая картина. Подключил SSL к сайту на JOOMLA 3.
    Главная страница работает без проблем, а вот другие страницы выдают ошибки при включенной опции "Перенаправление". Если её выключить, то ссылки типа https://test.ru/index.php/main-info/biznes работают.
    Опция "Использовать SSL" - Весь сайт
    На HTTP все работает нормально.
    Чувствую, что проблема в .htaccess

    ЗАДАЧА.
    Добиться отображения ссылки https://test.ru/main-info/biznes

    Файл .htaccess стандартный.
    Код:
    ##
    # @package    Joomla
    # @copyright  Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.
    # @license    GNU General Public License version 2 or later; see LICENSE.txt
    ##
    
    ##
    # READ THIS COMPLETELY IF YOU CHOOSE TO USE THIS FILE!
    #
    # The line just below this section: 'Options +FollowSymLinks' may cause problems
    # with some server configurations.  It is required for use of mod_rewrite, but may already
    # be set by your server administrator in a way that disallows changing it in
    # your .htaccess file.  If using it causes your server to error out, comment it out (add # to
    # beginning of line), reload your site in your browser and test your sef url's.  If they work,
    # it has been set by your server administrator and you do not need it set here.
    ##
    
    ## No directory listings
    IndexIgnore *
    
    ## Can be commented out if causes errors, see notes above.
    Options +FollowSymlinks
    Options -Indexes
    
    ## Mod_rewrite in use.
    
    RewriteEngine On
    
    ## Begin - Rewrite rules to block out some common exploits.
    # If you experience problems on your site block out the operations listed below
    # This attempts to block the most common type of exploit `attempts` to Joomla!
    #
    # Block out any script trying to base64_encode data within the URL.
    RewriteCond %{QUERY_STRING} base64_encode[^(]*\([^)]*\) [OR]
    # Block out any script that includes a <script> tag in URL.
    RewriteCond %{QUERY_STRING} (<|%3C)([^s]*s)+cript.*(>|%3E) [NC,OR]
    # Block out any script trying to set a PHP GLOBALS variable via URL.
    RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
    # Block out any script trying to modify a _REQUEST variable via URL.
    RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})
    # Return 403 Forbidden header and show the content of the root homepage
    RewriteRule .* index.php [F]
    #
    ## End - Rewrite rules to block out some common exploits.
    
    ## Begin - Custom redirects
    #
    # If you need to redirect some pages, or set a canonical non-www to
    # www redirect (or vice versa), place that code here. Ensure those
    # redirects use the correct RewriteRule syntax and the [R=301,L] flags.
    #
    ## End - Custom redirects
    
    ##
    # Uncomment following line if your webserver's URL
    # is not directly related to physical file paths.
    # Update Your Joomla! Directory (just / for root).
    ##
    
    # RewriteBase /
    
    ## Begin - Joomla! core SEF Section.
    #
    RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
    #
    # If the requested path and file is not /index.php and the request
    # has not already been internally rewritten to the index.php script
    RewriteCond %{REQUEST_URI} !^/index\.php
    # and the requested path and file doesn't directly match a physical file
    RewriteCond %{REQUEST_FILENAME} !-f
    # and the requested path and file doesn't directly match a physical folder
    RewriteCond %{REQUEST_FILENAME} !-d
    # internally rewrite the request to the index.php script
    RewriteRule .* index.php [L]
    #
    ## End - Joomla! core SEF Section.
    #1
  2. Modi34

    Modi34 Свой человек

    Регистрация:
    31 окт 2014
    Сообщения:
    2.033
    Симпатии:
    720
    в самое начало своего htaccess попробуйте вставить

    Код:
    RewriteEngine on
    
    RewriteCond %{SERVER_PORT} !^443$
    
    RewriteRule .* https://%{HTTP_HOST}%{REQUEST_URI} [QSA,R=301,L]
    
    <IfModule !mod_ssl.c>
    
    Redirect permanent / https://test.ru
    
    </IfModule>
    #2
  3. kosas

    kosas Cкладчик

    Регистрация:
    25 фев 2015
    Сообщения:
    20
    Симпатии:
    9
    The requested URL /main-info/biznes was not found on this server.
    #3
  4. user0718j1

    user0718j1 Опытный складчик

    Регистрация:
    7 мар 2015
    Сообщения:
    45
    Симпатии:
    8
    Проблемы с ssl могут быть на стороне хостинга. К примеру на таймвебе мы 2 недели им долбили, что ошибка на их стороне. При включении ssl в админке сайт выдавал "циклическую переадресацию" на всех страницах кроме админки и главной. Сайт перенесли на vds и все заработало без проблем.
    Конечно то, что я написал не поможет решить Вам проблему, но посмотрите на стороне хостера (если используете виртуальный хостинг), а если vds то смотрите настройки apache, или если стоит связка apache и ngihx так как joomla со стандартным htaccess должна без проблем работать на ssl при включении его в админке.
    #4
    Coresolo, Modi34 и kosas нравится это.
  5. kosas

    kosas Cкладчик

    Регистрация:
    25 фев 2015
    Сообщения:
    20
    Симпатии:
    9
    Хостинг свой. Пока все отключил. Разбираемся с Апачем.
    #5
  6. Modi34

    Modi34 Свой человек

    Регистрация:
    31 окт 2014
    Сообщения:
    2.033
    Симпатии:
    720
    что значит свой? - на локальном компьютере?
    может быть что угодно - в httpd.conf нужно раскомментировать или прописать
    RewriteEngine On
    RewriteLog "/var/log/apache2/rewrite.log"
    RewriteLogLevel 3

    или найдите в httpd.conf LogLevel и вместо того что у вас пропишите LogLevel alert rewrite:trace6

    путь лучше поставить тот где у вас логи - тогда у вас в логах будет сообщение описывающее что происходит и тогда я возможно смогу вам помочь.
    Последнее редактирование: 26 июн 2015
    #6
  7. kosas

    kosas Cкладчик

    Регистрация:
    25 фев 2015
    Сообщения:
    20
    Симпатии:
    9
    Сори в смысле свой - VPS.
    Попробуем. Отпишусь. Сейчас на сайте народу куча ;-)
    #7
  8. Coresolo

    Coresolo Модератор

    Регистрация:
    10 окт 2014
    Сообщения:
    112
    Симпатии:
    74
    Дополню тему статьей инструкцией «Как перенести сайт на HTTPs. Пошаговая инструкция» от Сергея Кокшарова: https://devaka.ru/articles/moving-to-https
    #8
    kosas и red нравится это.
  9. kosas

    kosas Cкладчик

    Регистрация:
    25 фев 2015
    Сообщения:
    20
    Симпатии:
    9
    В итоге, разобрался. Неправильным был файл настройки Апача.
    Рабочая версия такая:
    Код:
    <VirtualHost site.ru:80>
    
        ServerAdmin [email protected]
    
        ServerName site.ru
            ServerAlias www.site.ru
    
        DocumentRoot /var/www/site.ru
    
        ErrorLog ${APACHE_LOG_DIR}/error.log
        CustomLog ${APACHE_LOG_DIR}/access.log combined
    
    
    
        <Directory />
        Options FollowSymLinks
        AllowOverride None
        </Directory>
    
        <Directory /var/www/site.ru/>
        Options Indexes FollowSymLinks MultiViews
        AllowOverride All
        php_admin_value mbstring.func_overload 0
        Order allow,deny
        allow from all
        </Directory>
    </VirtualHost>
    
    <IfModule mod_ssl.c>
       <VirtualHost site.ru:443>
    
           ServerAdmin [email protected]
    
           ServerName site.ru
           ServerAlias www.site.ru
    
           DocumentRoot /var/www/site.ru
    
           ErrorLog ${APACHE_LOG_DIR}/error.log
           CustomLog ${APACHE_LOG_DIR}/access.log combined
          
        SSLEngine on
        SSLProtocol all -SSLv2
        SSLCertificateFile /etc/apache2/ssl/site.ru/site.crt
        SSLCertificateKeyFile /etc/apache2/ssl/site.ru/site.key
        SSLCertificateChainFile /etc/apache2/ssl/site.ru/site.ca-bundle
    
        <Directory /var/www/site.ru/>
        Options Indexes FollowSymLinks MultiViews
        AllowOverride All
        php_admin_value mbstring.func_overload 0
        Order allow,deny
        allow from all
        </Directory>
    
        <FilesMatch "\.(cgi|shtml|phtml|php)$">
        SSLOptions +StdEnvVars
        </FilesMatch>
    
        <Directory /usr/lib/cgi-bin>
        SSLOptions +StdEnvVars
        </Directory>
            ServerSignature On
       
        BrowserMatch "MSIE [2-6]" \
                           nokeepalive ssl-unclean-shutdown \
                           downgrade-1.0 force-response-1.0
           BrowserMatch "MSIE [17-9]" ssl-unclean-shutdown
    
       </VirtualHost>
    </IfModule>
    #9
    Modi34 нравится это.
Статус темы:
Закрыта.