Forum Moderators: mack
Thanks,
Pike
>>>for asp and php, what can be done to ensure that the resulting pages are very google-friendly.
The server-side scripting cannot be seen by Google, or anyone for that matter. You should make sure that the HTML code that those server-side technologies produce is properly constructed, however.
Now that I'm thinking furhter about it. Do the googlebots themselves generate the pages when searching so, though generated on the fly, seem to be static from a spider's perspective?
Down the road, you may become interested in yet another possibility: A static copy of a dynamic page, saved on disk and re-generated at intervals. This reduces the CPU load on the server, since it won't have to process the script for each and every HTTP request for a "page."
Jim
http://example.com/idx/propdetails.asp?mlsid=812&location=1
to translate to something like
/propertydetails/Homes/Burlington/mls26010340."
The designer of my new site responded:
"Search engines do not care if your link is http://www.example.com/real_estate/listings/Condos/NH/Woodstock/521542 or http://192.168.0.1/idx/propdetails.asp?mlsid=812&location=1
as long as the link is valid and is located on a static page. Since the only static pages are your home page and search pages these are the pages you want your links on."
As I understand things, he is not correct. Could anyone shed light on his response?
[edited by: encyclo at 3:41 pm (utc) on Jan. 16, 2007]
[edit reason] examplified, see terms of service [/edit]
I have found that descriptive and precise file/category naming structure with .html or .htm extensions to work quite well. A PHP mod_rewrite may be used to achieve the .html extension while retaining the ability to pass variables and store sessions - look at how relationships.com does it (for full disclosure, I don't benefit by mentioning that domain name).
However you decide to create your website, it is important that you create a cron job (or build it into the functionality of the website) that builds and submits a google and yahoo sitemap.
A good resource for planning site layout (in case you're also figuring out that): [developer.yahoo.com...]
Search engines do not care if your link is http://www.example.com/real_estate/listings/Condos/NH/Woodstock/521542 or [192.168.0.1...]
In terms of SEO it make a big difference. Also, the former is much more user friendly, which is also very important.as long as the link is valid and is located on a static page. Since the only static pages are your home page and search pages these are the pages you want your links on.Not true. A blog post, for example, is a dynamically generated page, but since the article portion of is generally static, even though new comments are added over time and the information in a side bar might change, a search engine WILL crawl it (unless you tell it otherwise) and index it, which is what I assume you would want.