How does thinkphp5 route distinguish between An and A / B?

my code is as follows:
Route::rule ("a _ blank, "index/Index/a");
Route::rule (" a _ Route::rule _ type _ expression, "index/Index/b");
I expect the first route expression to address a, and the second route expression to address b. Actually, they all go to address a.

Nov.06,2021

should be an exact match
Route::rule ('a match, 'index/Index/a');
Route::rule (' an index/Index/b');

Menu