Actions
Bug #92726
closedRouting leads to 404
Status:
Closed
Priority:
Should have
Assignee:
Category:
Site Handling, Site Sets & Routing
Target version:
Start date:
2020-10-28
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
9
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
With changes from https://github.com/TYPO3/TYPO3.CMS/commit/e98ba4a4a843ae989058560fa52707ebe9ba481d
our working config leads now to a 404.
f. ex.
/de/produkt/testcategory/testproduct -> 404
/de/produkt/testcategory -> 200
Products:
type: Extbase
extension:Products
plugin: Page
routes:
- routePath: '/{category}/{product_title}'
_controller: 'Product::show'
_arguments:
category: category
product_title: product
defaultController: 'Product::show'
aspects:
category:
type: PersistedAliasMapper
tableName: 'tx_products_domain_model_category'
routeFieldName: 'url_path'
product_title:
type: PersistedAliasMapper
tableName: 'tx_products_domain_model_product'
routeFieldName: 'url_path'
defaults:
category: ''
product_title: ''
requirements:
category: '[a-zA-Z0-9].*'
product_title: '[a-zA-Z0-9].*'
is this yaml configuration wrong? was this a side effect that never should be working? or is this now a bug?
Actions