Помогите с 301 редиректом с http на https

Тема в разделе "Общие вопросы", создана пользователем koroluk1990, 26 сен 2015.

  1. koroluk1990

    koroluk1990 Новичок

    Сообщения:
    5
    Симпатии:
    0
    Друзья, настроил на сайте использование https протокола, поставил редиректы, вроде бы все нормально, но вот заметил ерунду, что адрес вида http://lacomfy.com/bedroom-furniture редиректится на страницу https://lacomfy.com/index.php?_route_=bedroom-furniture, а должен на https://lacomfy.com/bedroom-furniture. В чем может быть проблема? Почему появляется лишний кусок в урл и как это поправить, чтоб был нормальный редирект с http на https.

    это .htaccess

    Код:
    Options All -ExecCGI -Indexes -Includes +FollowSymLinks
    Options +SymLinksIfOwnerMatch 
    ErrorDocument 404 /catalog/view/template/usa/error/no_found.tpl
    # Prevent Directoy listing 
    Options -Indexes
    
    # Prevent Direct Access to files
    <FilesMatch "\.(tpl|ini|log)">
    Order deny,allow
    Deny from all
    </FilesMatch>
    
    # SEO URL Settings
    RewriteEngine On
    
    # If your opencart installation does not run on the main web folder make sure you folder it does run in ie. / becomes /shop/ 
    
    RewriteBase /
    RewriteRule ^sitemap.xml$ index.php?route=feed/google_sitemap [L]
    RewriteRule ^googlebase.xml$ index.php?route=feed/google_base [L]
    RewriteRule ^download/(.*) /index.php?route=error/not_found [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_URI} !.*\.(ico|gif|jpg|jpeg|png|js|css)
    RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA]
    
    
    
    #This setting force logo url to it's home page
    RewriteCond %{QUERY_STRING} ^route=common/home$
    RewriteRule ^index\.php$ https://lacomfy.com/? [R=301,L,NE,NC]
    
    #This setting force http to https version
    RewriteCond %{SERVER_PORT} 80
    RewriteRule ^(.*)$ https://lacomfy.com/$1 [R=301,L,NE]
    
    
    
    
    
    ##
    ### Additional Settings that may need to be enabled for some servers 
    ### Uncomment the commands by removing the # sign in front of it.
    ### If you get an "Internal Server Error 500" after enabling any of the following settings, restore the # as this means your host doesn't allow that.
    
    # 1. If your cart only allows you to add one item at a time, it is possible register_globals is on. This may work to disable it:
    # php_flag register_globals off
    
    # 2. If your cart has magic quotes enabled, This may work to disable it:
    # php_flag magic_quotes_gpc Off
    
    # 3. Set max upload file size. Most hosts will limit this and not allow it to be overridden but you can try
    # php_value upload_max_filesize 999M
    
    # 4. set max post size. uncomment this line if you have a lot of product options or are getting errors where forms are not saving all fields
    # php_value post_max_size 999M
    
    # 5. set max time script can take. uncomment this line if you have a lot of product options or are getting errors where forms are not saving all fields
    # php_value max_execution_time 200
    
    # 6. set max time for input to be recieved. Uncomment this line if you have a lot of product options or are getting errors where forms are not saving all fields
    # php_value max_input_time 200
    
    # 7. disable open_basedir limitations
    # php_admin_value open_basedir none
    #RewriteCond %{QUERY_STRING} ^route=common/home$
    #RewriteCond %{REQUEST_METHOD} !^POST$
    #RewriteRule ^index\.php$ https://%{HTTP_HOST}? [R=301,L]
    #RewriteCond %{HTTP_HOST} !^lacomfy.com$ [NC]
    #RewriteRule ^(.*)$ https://lacomfy.com/$1 [L,R=301] 
    
    #RewriteCond %{SERVER_PORT} !^443$
    #RewriteRule ^(.*)$ https://lacomfy.com/$1 [R=301,L]
    
    RewriteCond %{SERVER_PORT} ^80$
    RewriteRule ^(.*)$ https://lacomfy.com%{REQUEST_URI} [L,R=301]
    
    
    
    
    <IfModule mod_gzip.c>
        mod_gzip_on         Yes
        mod_gzip_dechunk    Yes
        mod_gzip_item_include file  \.(html?|txt|css|js|php|pl)$
        mod_gzip_item_include mime  ^text\.*
        mod_gzip_item_include mime  ^application/x-javascript.*
        mod_gzip_item_exclude mime  ^image\.*
        mod_gzip_item_exclude rspheader ^Content-Encoding:.*gzip.*
    </IfModule> 
    #<ifModule mod_deflate.c>
    #    AddOutputFilterByType DEFLATE text/html text/plain text/xml application/xml application/xhtml+xml text/css text/javascript application/javascript application/x-javascript
    #</ifModule>
    <ifModule mod_expires.c>
        ExpiresActive On 
        ExpiresDefault "access plus 5 seconds"
       
        ExpiresByType image/x-icon "access plus 2592000 seconds"
        ExpiresByType image/jpeg "access plus 2592000 seconds"
        ExpiresByType image/png "access plus 2592000 seconds"
        ExpiresByType image/gif "access plus 2592000 seconds"
        ExpiresByType application/x-shockwave-flash "access plus 2592000 seconds"
       
        ExpiresByType text/css "access plus 604800 seconds"
        ExpiresByType text/javascript "access plus 604800 seconds"
        ExpiresByType application/javascript "access plus 604800 seconds"
        ExpiresByType application/x-javascript "access plus 604800 seconds"
    
        ExpiresByType text/html "access plus 43200 seconds"
         
        ExpiresByType application/xhtml+xml "access plus 600 seconds"
    </ifModule>
    
    
    
    BrowserMatch ^Mozilla/4 gzip-only-text/html
    BrowserMatch ^Mozilla/4\.0[678] no-gzip
    BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
    Ищу решение не для конкретной категории, а сразу какой-то универсальный способ, ведь редиректить отдельно каждую категорию - это много, ведь их (вместе с подкатегориями) более 80.
     
  2. my2you

    my2you Продвинутый пользователь

    Сообщения:
    281
    Симпатии:
    125
    вижу что все нормально. Попробуйте с другого брузера, предварительно очистив все кеши браузера.
     
  3. koroluk1990

    koroluk1990 Новичок

    Сообщения:
    5
    Симпатии:
    0
    Да, уже разобрался. Благодарю :)
     
  4. my2you

    my2you Продвинутый пользователь

    Сообщения:
    281
    Симпатии:
    125
    так что было то? Кеш ?
     
  5. koroluk1990

    koroluk1990 Новичок

    Сообщения:
    5
    Симпатии:
    0
    Нет, поправил правила переадресации, перенеся их вверх. На другом форуме подсказали. Как мне объяснили, правила переадресации должны быть выше правил движка, и тогда все будет хорошо. А так у меня все было написано нормально.
     
  6. my2you

    my2you Продвинутый пользователь

    Сообщения:
    281
    Симпатии:
    125
    да. Это важно. Но и про кеш не стоит забывать. Особенно в mozilla firefox "любит кешировать правила".
     
    Последнее редактирование: 26 сен 2015
  7. Mega

    Mega Пользователь

    Сообщения:
    40
    Симпатии:
    2
    А в какой из последних версий Opencart перенаправление с http на https нормально работает?
     
  8. my2you

    my2you Продвинутый пользователь

    Сообщения:
    281
    Симпатии:
    125
    на всех. И движок тут практически не причем.
     
  9. Mega

    Mega Пользователь

    Сообщения:
    40
    Симпатии:
    2
    На 2.2 думаю не может априори нормально работать, так как SSL на нём если и есть, то с глюками или в ограниченном режиме.
     
  10. bond

    bond Пользователь

    Сообщения:
    32
    Симпатии:
    1
    Здравствуйте!
    Есть магазин https://сайт.ru , хочу сделать на всякий случай www.сайт.ru , но что-бы с www.сайт.ru был редирект на https://сайт.ru без www, как не пытался, получается только так: https://www.сайт.ru , а так браузер выдает ошибку безопасности. Кто подскажет, как прописать это в htaccess?
    :)
    Спасибо!
     
    Последнее редактирование: 8 июн 2016
  11. Vlad

    Vlad Эксперт

    Сообщения:
    4.151
    Симпатии:
    1.004
    сделайте два отдельных простых редиректа с www на https и без www