Forum Moderators: open
My two questions are...
First, is that even possible? Can we make it that Googlebot, etc finds a website: www.example.com/static.html and a user who didn't come in thorugh a search engine would find a dynamic site: www.example.com/crazydynamicURL
And second, if this is possible, would it be considered spam. What if we put a robots.txt file on the dynamic content so the search engines couldn't index the dynamic part?
Thanks
I have also been thinking about using cloaking to get the best out of SE:s and yes it is possible and you can even have the se indexed page to deliver the "real" users to the desired page. Now as I see it - it is dangerous if the SE:s find out about it, but will they? that I cannot say and the power of your cloaking device depends on how good database it will have concerning the SE:s
Thats just my 2cents worth.
That is how I've done it... and I actually surprised myself the other day by seeing that a few sites each had thousands of dynamic pages that were ALL FRAMESETS where I'd forgotten to even optimize them! (Then again, my partner is the queen of the known universe when it comes to SEO ad SEM, so she certainly helps!).
Where you could theoretically run into an issue -- MAYBE - is if you don't change things programmatically, and you have different links on the site. In other words... say your .asp/.aspx pages all continue to use '&' and '=' and the like. They will run fine. But if you then create links that use '_A_' and '_E_' instead, and you don't get them ALL, then you could in effect be providing duplicate content (though it's actually just the same page)... that's because an ISAPI.dll simply interprets query strings... it does not force code changes...
Still, we did all the code changes on all the pages and so now the '_=_' and '_&_' don't actually exist... very easy to do regardless of what you're doing and how you're doing it... though less complex in .asp than in .aspx.
At any rate, this is undoubtedly the worst explanation ever provided... but, I can give you more details and even give you a free ISAPI dll... it works like a charm... pm if you want or need more information.
Bye.
It's so freaking easy... pay me... hmmm... let's see... a six pack and I'll do it for you... bwahahahahah.....
Just use what I suggested in my previous post... then it handles things for you.
-- And sorry for all these posts -- I should have put all in one!
At any rate, you're both dealing with 2 good solutions -- the first is what I've described and FAR easier and more graceful (and with virtually no overhead in IIS) than the second, whish is to write pages on the fly.
Now the only way I would sugest the second (easy for someone like me who's a programmer, but tough for a non-programmer) is if you don't have control/access to your server (particularly IIS) and can't install custom dll's. If you can install custom DLL's go with the ISAPI.dll.