• Hi,

    After I was configuring a redirection over my site which is https only, In order to make my amazon astore which works with http only to work, I managed to make this redirection rule and it worked. However, After I used this into my site the woocommerce cart and checkout hangs and appears loading indefinetly. Could you please help me to avoid this htaccess file to affect my woocommerce site?

    # BEGIN HTTPS Redirection Plugin
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /

    RewriteCond %{HTTPS} !=on
    RewriteCond %{REQUEST_URI} !^/tienda-libros-recomendados
    RewriteCond %{QUERY_STRING} !^/tienda-libros-recomendados
    RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php?/$1 [L]
    </IfModule>
    # END HTTPS Redirection Plugin

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ – [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

    # END WordPress

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘Problems with woocommerce after adding’ is closed to new replies.