Jamersan | Magento and BigCommerce Elite Partner Agency

Using Guzzle Without Composer

While working on a module to integrate Magento with Foxy Cart’s awesome checkout service, I came across the need to use Guzzle in my Magento module. Because I am building the initial version of this module using Magento 1.x, I…

Easy 301 Redirect

Just add the following to the .htaccess file in the correct directory of the pages you would like to redirect. RewriteEngine On Redirect 301 /shop/oldFILE.html http://mywebsite.com/shop/new-subfolder-if-needed/newFILE.html Lather, Rinse, Wash, Repeat….as needed. -Will