Hello teacher, the address demonstrated in your videowww.tp5.com/hello/aaa/dddd-33-ccc-444-eee-5555.html is displayed like this, but after modifying the configuration file separator The displayed address is not the address of your color but www.tp5.com/hello-aaa-dddd-33-ccc-444-eee-5555.html. When clicking, it prompts that the hello module is not found.
What is the reason?
包子จุ๊บ2020-01-03 00:02:26
Moderator, have you found a solution? I also encountered this problem. I changed the separator and then output it in the URL address bar saying: Template not found. How to solve this problem?
天蓬老师2018-10-11 10:01:24
Your question and answer involves combination variable rules in routing:
Route::get('item-<name>-<id>', 'product/detail') ->pattern(['name' => '\w+', 'id' => '\d+']);
The advantage of combined variables is that there are no fixed separators in routing rules, and you can combine the required variable rules and separators at will, for example Routing rules can be supported by changing them to the following:
Route::get('item<name><id>', 'product/detail') ->pattern(['name' => '[a-zA-Z]+', 'id' => '\d+']);Route::get('item@<name>-<id>', 'product/detail') ->pattern(['name' => '\w+', 'id' => '\d+']);
The above official website describes the variable rules. If you have many variables, in order to generate a URL address that is friendly to search engines, you can use combined variable rules to beautify you. URL address, but it will lose a certain execution efficiency. If your operation has no parameters or default parameters, you should pay attention to the changes in the rules to prevent failure~~