Important

You are browsing upcoming documentation for version 6.1 of OroCommerce, scheduled for release in 2025. Read the documentation for version 6.0 (the latest LTS version) to get up-to-date information.

See our Release Process documentation for more information on the currently supported and upcoming releases.

Routing Prefix 

By default, the Sales Frontend login, login-related and endpoint URLs are accessible under the prefix /admin/sales-frontend. You can change this via the bundle configuration option oro_sales_frontend.routing_prefix.

Note

Please note that using the same prefix as the back-office (e.g., /admin) or leaving it empty is not allowed as it would prevent access to the back-office or storefront.

Example 

The following configuration snippet will prefix the Sales Frontend routes with /admin/sales:

config/config.yml 
 oro_sales_frontend:
     routing_prefix: "/admin/sales"

After the bundle configuration is changed, make sure to:

  1. Clear the Symfony cache with the php bin/console cache:clear command.

  2. Rebuild the Sales Frontend application with the new prefix in the environment variables used during the building process.