Issue 3508636: Make regex redirects work on path aliases
1 unresolved thread
1 unresolved thread
Merge request reports
Activity
111 123 // Do the inbound processing so that for example language prefixes are 112 124 // removed. 113 125 $path = $this->pathProcessor->processInbound($request->getPathInfo(), $request); 126 $path_alias = $this->aliasManager->getAliasByPath($path); 114 127 $path = ltrim($path, '/'); 128 $path_alias = ltrim($path_alias, '/'); 115 129 116 130 $this->context->fromRequest($request); 131 $lang_id = $this->languageManager->getCurrentLanguage()->getId();
Please register or sign in to reply