-
Notifications
You must be signed in to change notification settings - Fork 9.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Possibility of a short route with address bar of the browser #513
Comments
Similar thing was already done as a community module: |
@12th, Thank you for the idea! We have created an issue in the product backlog. We will get back to you once we complete the analysis. |
Internal ticket: MAGETWO-23155 |
This proposal is currently not our priority. It was added to the backlog. Similar functionality can be achieved with server rewrites if needed. |
Thank you for your submission. We recently made some changes to the way we process GitHub submissions to more quickly identify and respond to core code issues. Feature Requests and Improvements should now be submitted to the new Magento 2 Feature Requests and Improvements forum (see details here). We are closing this GitHub ticket and have moved your request to the new forum. |
Fixed issues: - MAGETWO-59547: Static versioning is not working under nginx - MAGETWO-59374 [Backport]- Ship To section on Checkout's Review & Payments step, clears out the Ship To address on page reload - for 2.0 - MAGETWO-55664 Portdown MAGETWO-51428 down to M2.0.x branch - MAGETWO-58793 Unable to edit configurations options after product options lose price on regeneration - MAGETWO-58894 [Backport] Customer is redirected to "Compare Products" Frontend page if tries to remove a Product from comparing - 2.0 - MAGETWO-58917 Error adding simple product to configurable product with advanced configurations - for 2.0.x - MAGETWO-59211 [Backport] - [Github] Minicart item count is not updated if switch from https to http #6487 - for 2.0 - MAGETWO-57036 [Backport] - Unable to upload change robots.txt file via admin panel - for 2.0
Hello. I apologize in advance if this functionality is. I would like to make a suggestion on the routes. It is very lacking in the short address with address bar of your browser. Now addressing Magenta works of principle:
http:// domain.com / module / controller / action
http:// domain.com / checkout / cart / updatePost
It would be great if had the opportunity to register routes for specific modules, as is done, for example, in the framework Kohana:
Route::set('default', '(controller(/action(/id)))')
->defaults(array(
'controller' => 'welcome',
'action' => 'index',
));
Route::set('cart', 'cart(/param1)')
->defaults(array(
'directory' => 'checkoutDirectory',
'controller' => 'cartController',
'action' => 'indexAction',
));
PS: example is slightly modified in order to convey the essence
And then when you click on the address:
http:// domain.com / cart
working out the controller
http:// domain.com / checkout / cart / index
The text was updated successfully, but these errors were encountered: