I recently read that a dynamic site (asp) will be read by SE as plain html with a single line of code on the server side. Something along the lines of <page=mypage.htm>. I was told that the SE will never see the ASP, only the page after the fields are populated by the SQL database. How exactly is this done? Do SE penalize for this sort of thing? It isn't cloaking.
I welcome any knowledge or input you may have on this subject.
I've personally been involved in making some ASP sites spider-friendly by removing the query strings, and have seen excellent results in terms of increased position and referrals from search engine listings.
Do a few searches for URL +re-write +ASP and you should find all you need to get started.
Ammon Johns
[mydomain.com...]
The page would be dynamic but the one line of code, <page=mypage.htm>. would make it so there is no ? and it would appear to the spider like straight html.
Thanks for the info BK.
www.somesite.com?article=34&author=4
you can easily work it in php so that it reads
www.somesite.com/articles/34/4 using Apaches 'look back' feature and a nice function to 'explode' the url into it's component parts.
I'm sure you could do the same with ASP .....
Nick