我无法将以下网址路由到CodeIgniter中的指定URI细分。
我想路由此网址
00100003
到:
http://192.168.10.225/bachan/view/wholesale_detail/test-property/155454
在 CodeIgniter 3x 。
我已经实现了以下代码,但它没有按预期工作:
http://192.168.10.225/bachan/wholesale_detail/test-property/155454
在$route['wholesale_detail/(:any)']="wholesale_details/$1";
档案中。
答案 0 :(得分:3)
试试这个:
// verify element 20.00 EUR is not present
predefined.newValueButtonIsNotPresent().then(function(value) {
expect(value).not.toEqual(twentyEurosText);
});
在路由中,数组键包含要匹配的URI,而数组值包含应重新路由到的目标。在上面的示例中,如果在URL中找到文字单词“bachan / wholesale_detail / test-property / 123”,则使用“bachan”类和“view”方法。
答案 1 :(得分:-1)
使用此:
$route['bachan/wholesale_detail/test-property/(:any)'] = 'wholesale_details/$1';