-1

ローカルベースのレストランのリスト/レビュー サイトを構築しようとしています。Web でレストランを検索すると、Yellow Pages や Yelp などのサイトに、そのレストランのリストの一番上に表示されるリストがあることに気が付かずにはいられません。明らかに、彼らは米国内のすべてのレストランの個別の Web ページを持っているわけではありませんが、何らかの形で情報のデータベースが検索エンジンによって読み取られています。それはどのように達成されますか?

前もって感謝します。

4

1 に答える 1

1

The information is stored in a database, and a template page just pulls up the information from the database and displays it. The URL appears to be a unique page for the restaurant by clever use of URL re-writing or, in .NET, using routing.

Routing basically takes a GET parameter from the url, incorporates it into the URL as a pseudo-path, then uses that parameter to get the database record to display the restaurant.

于 2012-05-21T12:47:53.940 に答える