SEO URLs for System Pages
Posted: Wed Sep 28, 2011 12:13 pm
I love that I'm able to create custom SEO-friendly URLs for products, categories, manufacturers, information pages... but I hate that I've still got to use http://example.com/index.php?route=checkout/cart, instead of something simpler like http://example.com/cart. So, I fixed it. (At least for version 1.5.0...)
http://stackoverflow.com/q/7578055/961455
Apply the patch and add to the existing url_alias table
http://example.com/index.php?route=checkout/cart now becomes http://example.com/cart
http://stackoverflow.com/q/7578055/961455
Apply the patch and add to the existing url_alias table
Code: Select all
INSERT INTO `url_alias` (`url_alias_id`, `query`, `keyword`) VALUES (NULL, 'checkout/cart', 'cart');