Glossary Item Box
Overview
This page has been written as a guide to aid you in upgrading your site from a 2.0.0 - 2.5.x version to v2.6.0 and after. Please read this page in its entirety before attempting to upgrade.
SEO URLs
Squirrelcart v2.6.0 includes support for the new Testimonials module. If you are using our SEO URL feature with an .htaccess file, you will need to update that file if you are using this module.
If your .htaccess file looks like this:
RewriteEngine On
RewriteRule ^(products|categories|news|reviews)/?(.*)$ store.php/$1/$2 [L]
Change it as follows, adding "|testimonials":
RewriteEngine On
RewriteRule ^(products|categories|news|reviews|testimonials)/?(.*)$ store.php/$1/$2 [L]
If your .htaccess file looks like this:
<Files ~ "categories|products|news|reviews">
ForceType application/x-httpd-php
</Files>
Change it as follows (adding "|testimonials"):
<Files ~ "categories|products|news|reviews|testimonials">
ForceType application/x-httpd-php
</Files>
© 2001-2017 Lighthouse Development. All Rights Reserved.