这些链接有什么区别?

whats the difference between those links?

link 1 = https://website.com/ %D7%9C%D7%99%D7%9E%D7%95%D7%93%D7%99%D7%9D

link2=https://website.com/q.aspx?q=%D7%9C%D7%99%D7%9E%D7%95%D7%93%D7%99%D7%9D

请问它们有什么区别,它们是如何工作的。

如果您熟悉它,请告诉我。 PM 联合办公。

p.s我不是开发人员,所以需要你们最好的知识。

谢谢。

Link1 : https://website.com/<abc>

Here <abc> is generally considered the sub-category of the hierarchy of the website in the URL.
For ex : https://website.com/user/settings

Link2 : https://website.com/q.aspx?q=<abc>

`?q=` term stands for query ,i.e. it is used when searching & loading data on the page where main term is <abc>.
In this case, q.aspx page is being loaded where query term is <abc>
For ex. : https://website.com/q.aspx?q=latest_products
Also note q can be any other variable, which is then accessed on the backend by the code in q.aspx file, for ex : https://website.com/q.aspx?mytopic=latest_products