Forum Moderators: open
Now, downloading parts of that site (let's say the browsing structure and other link-heavy pages) and interlinking with another core (neighbor) site that's static, does that do any good?
How is the whole duplication concern hurting me?
Thanks for your tips, Jens
A dynamic site calls upon product data to assemble the product pages. Browse and other major anchor and nav pages are dynamic too but could easily be re-created static (not too many changes expected).
Now, when downloading the asp files with a tool to make them static at the same time, uploading them again after some tweaking (the dynmaic pages wil still be there), do I run into trouble of duplicated content? Certainly not with the SE's that do not recognize the dynamic pages, but how about the ones who recognize both formats?
Thanks, Jens
Search Engine Friendly Shopping Carts [webmasterworld.com]
The duplication concerns you have are warranted. In Google's case, it will keep one of the two URIs in the index. Usually the one that has the most PR. If there is no PR assigned yet, it is going to keep the one it indexed first. I've found that Google is pretty good at merging duplicate content but I wouldn't want to take the chance.
If you are generating static pages from your dynamic content, then you need to Disallow your dynamic URIs in the robots.txt file.
A much easier way to do this would be to institute a URI Rewrite program and work with existing content instead of generating all of that additional static content you are referring to.
But for SE's to eat up and index the nav structure and pages better I figure to do this part static, not asp.
So, basically it would be the product pages running with the database and the browsing and nav structure pages being static.
How about doing all within one URL?
Jens
What it boils down to is that there are several options and you just need to watch out for the duplication not to kick in.
I got plenty of space and don't mind to re-load 50,000 static pages every 6 months or so.
If I was to optimize the static pages then, direct the users in the last step to the dynamic product pages with the cart and disallow all bots on the dynamic content site via robots.txt (run it on two different URL's), would that work?
Thanks, Jens
If I was to optimize the static pages then, direct the users in the last step to the dynamic product pages with the cart and disallow all bots on the dynamic content site via robots.txt (run it on two different URL's), would that work?
I would think so. Although I feel you may be taking the long route in doing so. I would definitely suggest looking into a URI Rewrite program for your server and go that route if you can. You'll be that much further ahead and won't have to maintain 50,000 static pages, whew, that is a lot of pages just sitting there with content getting stale.
What's nice about the URI Rewrite is that those pages will never get stale as they are being generated on the fly per the request.
P.S. The two different URIs is not something I would do personally. It is going to create some confusion for the user and there may be other issues to contend with such as branding.
As I am running a software that picks up data from an external database and returns .aspx results I am struggling a bit to understand the config.
Do you have experience with .aspx?
Thanks, Jens
I only found this expression combination as an example which seems to attack a pure xml issue only:
[ISAPI_Rewrite]
RewriteRule /doc(.*)\.htm /XMLProcess.asp\?xml=$1.xml
It does not really help me much as AWS returns packaged data sets included in the final .aspx.
Is there any expression that tackeles exactly this?
Thanks, Jens
My original URL looks like this
[store.mysite.com...]
In IIS Rewrite I tried expression:
RewriteRule /product.aspx?asin=(.*) /product/$1.htm
expecting it would return
[store.mysite.com...]
Doesn't work, what am I missing?
Thanks, Jens
This is how the expression looks...
RewriteRule ^/shop/browse/(.*).htm /shop/browse.aspx?mode=$1
...for a simple URL like that...
[store.example.com...]
Now, for a URl like this...
[store.ad-free.net...]
...trying this...
RewriteRule ^/shop/browse/(.*)-(.*).htm /shop/browse.aspx?mode=$1&pid=$2
...or this...
RewriteRule ^/shop/browse.aspx?mode=(.*)&pid=(.*) /shop/browse-$1-$2.htm
...failed miserably...
Anyone with a better idea?
Thanks, Jens