Git Product home page Git Product logo

Comments (6)

pweightman avatar pweightman commented on August 21, 2024

The problem is in your brackets it should be:

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

You have a [ instead of a { before the REQUEST_URI}

from magento-htaccess.

nexobus avatar nexobus commented on August 21, 2024

that was a typo on my part it is a {

Steve

from magento-htaccess.

pweightman avatar pweightman commented on August 21, 2024

Personally I use the following syntax for this

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

If you want to use multiple domains and ensure that a 301 redirect is presented then use

RewriteEngine on
RewriteCond %{HTTP_HOST} ^www.(.)
RewriteRule ^.
$ https://%1/$1 [R=301,L]

from magento-htaccess.

nexobus avatar nexobus commented on August 21, 2024

I know it should be placed between the Mod_rewrite.c block but does putting it in the beginning or end matter?

from magento-htaccess.

pweightman avatar pweightman commented on August 21, 2024

It should be the first entry in your mod_rewrite block, as all other rewrites should be done after you have converted to https

from magento-htaccess.

nexobus avatar nexobus commented on August 21, 2024

great thank you.. I was able to get it working the way it should ... thanks for the help patrick.

from magento-htaccess.

Related Issues (14)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.