-3

eコマースサイトのSEOにどのような影響がありますか?データベースから駆動される製品/アイテム情報を表示します(各製品が独自のHTMLページを持っているのに対して)。

SEはアイテム情報を見つけますか?そうでない場合、この問題をどのように克服しますか?

4

2 に答える 2

2

Create individual pages for each product and use friendly URLs for all of them. These pages can be generated from a database, search engines don't mind at all. It is better for the pages to have a name like http://example.com/products/An-Awesome-Product/ than http://example.com/products.aspx?id=1234. ASP.NET MVC makes it trivial to do such things. With traditional webforms, you can use an HttpModule with a redirect so that the first example turns into the second one on the server such that search engines and visitors don't even notice.

Use a sitemap.xml to let the search engines know about your pages and when they were last updated.

Don't forget that the title of the page is quite important. And it does not do any harm to have decent metadata on the page with keywords and descriptions that are customized for the product.

Definitely do not generate pages with random content or filler content, as decent search engines are quite good at picking out patterns and penalize heavily for illicit behavior. Sadly, I've learned that from personal experience.

于 2009-01-25T03:35:45.360 に答える
0

返信とアドバイスありがとうございます。

私はこれに慣れていないので、理解していることを確認したいだけです...

製品が自家製の工芸品であり、詳細 (説明、素材、サイズ、価格など) がデータベースに保存されており、HTML ページに「ハードコード」されていないとします。

ユーザーがカテゴリを選択すると、Web サイトにはそのカテゴリのすべての製品が一覧表示されます (SQL の select where ステートメントを使用)。

次に、ユーザーが製品を選択すると、製品ページが作成されます (製品 = xyz の SQL を選択し、Web ページを動的に作成します)。

Google が Web サイトを「レビュー」すると、「静的な」Web ページではなくデータベースにあるにもかかわらず、すべての製品の詳細が表示されますか?

これがばかげた/単純な質問である場合は申し訳ありませんが、重要なようです。

ありがとう、デイブ

于 2009-01-25T21:07:06.773 に答える