lcbrq / openmage-url
This module allows to set friendly urls on any route.
Installs: 11
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 5
Forks: 0
Open Issues: 0
Type:magento-module
This package is not auto-updated.
Last update: 2025-04-01 07:46:15 UTC
README
Plugin for custom url management and rewrite fixes
Sample usage
Add app/etc/routes.xml with following config:
<config>
<default>
<checkout_cart_index>
<name>checkout/cart/index</name>
<route>koszyk</route>
<defaults>
<module>checkout</module>
<controller>cart</controller>
<action>index</action>
</defaults>
</checkout_cart_index>
</default>
</config>```