我想获取城市列表,其中每个城市名称都被链接并引用该城市的页面:
链接(在视图脚本中创建)如下所示:
http://project.loc/catalog/Berlin (in the HTML source code url-encoded: Berlin)
http://project.loc/catalog/Erlangen (in the HTML source code url-encoded: Erlangen)
http://project.loc/catalog/Nürnberg (in the HTML source code url-encoded: N%C3%BCrnberg)
“Berlin”、“Erlangen”等有效,但如果城市名称包含德语特殊字符(ä
、ö
、ü
、Ä
、Ö
、Ü
或ß
),如“Nürnberg”,则会出现 404 错误:
发生 404 错误页面未找到。请求的 URL 无法通过路由匹配。没有可用的例外
为什么?以及如何让它发挥作用?
提前致谢!
编辑:
我的路由器设置:
'router' => array(
'routes' => array(
'catalog' => array(
'type' => 'literal',
'options' => array(
'route' => '/catalog',
'defaults' => array(
'controller' => 'Catalog\Controller\Catalog',
'action' => 'list-cities',
),
),
'may_terminate' => true,
'child_routes' => array(
'city' => array(
'type' => 'segment',
'options' => array(
'route' => '/:city',
'constraints' => array(
'city' => '[a-zA-ZäöüÄÖÜß0-9_-]*',
),
'defaults' => array(
'controller' => 'Catalog\Controller\Catalog',
'action' => 'list-sports',
),
),
'may_terminate' => true,
'child_routes' => array(
// ...
),
),
),
),
),
),