Can the url address rules of get requests for front-end static pages be changed? Look at the content ~

1. For example, the default get request is shown in url as: abc.html?id= "123";

2. Now the company needs to make it easy for crawlers to climb the website. I hope the front end will change the address to a format similar to the following: abc/id/123.html

Sep.16,2021

this needs to be rerouted

for example, it used to be

router('abc')

now change it to

router('abc/id/:ID')

what you mean is that the request url, needs to be changed to the abc/id/123, front end. It just needs to be spliced like this when requested. https://xxx.n.com/abc/id/123,..

Menu