TYPO3 v9 routing redirect

revision 883c9938477592f3bf194dec1ef2896ee454fdbc

raw

job-routing.yaml

1
2
3
4
5
6
7
8
9
10
routeEnhancers:
  CorpJobs:
    type: Plugin
    limitToPages: [1129]
    routePath: '/{id}/{title}/'
    namespace: tx_corp_jobfinder
    requirements:
      id: '[0-9]{1,5}'
      title: '[-a-z0-9]+'
 
raw

log.txt

http://localhost:5707/jobs/detail/329/title/?cHash=a5189128ca98b93b0c8e5fbf3d0df4ea

http://localhost:5707/jobs/detail/329/title/?id=956


typo3_src/typo3/sysext/core/Classes/Routing/PageUriMatcher.php

$ curl 'http://localhost:5707/jobs/detail/329/title/?cHash=c2aef02d0670220e3cb56222cb437dfc'string(17) "page_1129_default"
string(1) "b"
string(85) "/jobs/detail/329/title"
string(19) "#^/jobs/detail$#sDu"
string(68) "page_1129_enhancer_tx_corp_jobfinder000000001d099a29000000000b6e57c0"
string(1) "b"
string(85) "/jobs/detail/329/title"
string(99) "#^/jobs/detail/(?P<tx_corp_jobfinder__id>[0-9]{1,5})/(?P<tx_corp_jobfinder__title>[-a-z0-9]+)/$#sDu"
string(17) "page_1128_default"
string(1) "b"
string(85) "/jobs/detail/329/title"
string(12) "#^/jobs$#sDu"
string(14) "page_1_default"
string(1) "b"
string(85) "/jobs/detail/329/title"
string(8) "#^/$#sDu"

History