lcbrq/openmage-url

This module allows to set friendly urls on any route.

Maintainers

Package info

github.com/lcbrq/magento-LCB_Url

Type:magento-module

pkg:composer/lcbrq/openmage-url

Statistics

Installs: 45

Dependents: 0

Suggesters: 0

Stars: 1

Open Issues: 0

0.7.0 2025-07-02 23:04 UTC

This package is not auto-updated.

Last update: 2026-03-12 02:21:57 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>```