Posts: 10,815
Name: Steven Bradley
Location: Boulder, Colorado
|
Vasity dynamic content usually refers to content pulled from a database. Think of an ecommerce site where your products sit in a database and when you call a page the products are pulled from the database to display on a page.
Another example is a content management system where your site is really a template that pulls content from the database to display. Blogs work this way. The benefit is that it's easier to create and modify pages since you don't need to touch the code and it's easier to make one change to a template file to change the look than it is to change a bunch of pages.
Usually you can tell content on a site is dynamic if you see parameters at the end of the URL like
index.php?prod=234&color=blue
prod and color are the parameters or variables and 234 and blue are their respective values. In this case prod 234 could be a shirt, but prod 235 could have been a pair of pants. The code for the page would still be the same, but the code would call different text and images based on the prod value.
Same thing for the color. You could have images of blue, red, and green shirts and the value for color grabs the right image from the database.
Daryl I think that may have been the case at one time, but search engines can and do read dynamic URLs. They can get caught up with session ids and they might get tripped up on a lot of parameters, but it's perfectly fine to use one or two parameters in URLs
PageRank wouldn't really be affected like you say. The fact that the page had any PR is an indication that it's URL was able to be spidered and indexed.
|