Forum Moderators: open
Has anyone had any luck making or finding a nice script for making this happen? jsp is what we are working with now.
I did some quick searching and came up with one item that appears to be an answer to your situation. I've never worked with jsp pages and don't see many in the serps (Search Engine Results Pages). From what I've read in the past, the technology has not really caught on. It appears that php and asp are the two predominant scripting languages.
Do a search in Google for...
javax.swing.text.html.HTMLDocument
Thankyou so much for finding that, and I'll pass it on asap. I try to take as much load off my programmer as I can as he's a friend with kids, and anyone with kids knows.... they just seem to consume time.... :)
Unless your site is totally useless right now, there must be some kind of interface to the UAs. For how are surfers accessing your site? I believe they get servered HTML documents since that is what browsers will understand. Thatīs all you need for the SEs as well. There is no fundamental difference between browsers and SE spiders.
Andreas
there is a section of the site called the doctor finder. It has a search by name/state/city. The final page is a jsp driven dynamic page with a parameter in the header that gives that specific docs info.
The final URL through that finder is: [mysitename.com...]
Maybe im being too cautious? Perhaps a search engine will use that raw url and index it? I wanted to stay away from giving the search engine a URL that looks like that.
Am I ok? if thats the case, I'll just geenrate a page that has every doctor link on it, as a "doctor master list/site map".
What you need is a servlet that would match a pattern and then would call an appropriate page using RequestDispatcher.forward.
Much more flexible than mod_rewrite.
If all your URLS are like the one you posted above, I would have thought that the links on your doctor master list page would be followed ok, at least by googlebot. I don't know about any other engines.
a servlet that would match a pattern and then would call an appropriate page using RequestDispatcher.forwardThats a really nice idea!
The only thing that might prevent a spider from spidering your site is the form of the URI. You wonīt have to worry a single bit if you use static URIs. The more parameter you have in your query string the less like you will get spidered. One parameter seems to be ok though.
Andreas