If I search for "Anarchy Online Universe" on google, AO-U pops up as hit #4 - with an invalid (old site style URI) article.
If I search for some AOU guide on google, AOU doesn't show up anywhere near the top.
I suspect this is because we don't use search-engine-friendly URLs. If changing the URLs are too much hassle (it probably is), Khuri might want to look into using the
google web tools (and similar tools for other search engines) to instruct the engines which parameters are important; Such as saying that the parameters "id", "mid", and "pid" should be used to identify a page.
Furthermore, I notice the titles are "AO-Universe - <useful title here>". I think it would be more useful if it was "<useful title here> - AO-Universe".
PS: URIs are quite horribly long too... They're currently:
Code: Select all
http://www.ao-universe.com/index.php?id=14&mid=26&site=AO-Universe%2FKnowledge%2FShadowlands%2FGameplay+Guides%2F&pid=524
; It would be a lot more copypaste-friendly (and less scary for the user) if we dropped the &site= parameter (it doesn't affect which page you end up at anyway; and it's not readable either due to URI encoding), and drop the specific reference to index.php, so the URI is something like this instead:
Code: Select all
http://www.ao-universe.com/?id=14&mid=26&pid=524
And yes. Someone really do need to go through all guides. I pick a guide at random to test something, and it's broken 90% of the time
The one above should probably use the item icon bbtags instead of hardcoded links to some arbitary uploaded icon.
PPS: If you for some reason still want the &site= parameter, place it at the end; and convert spaces to dashes (-), at least it'd be readable then. Might want to do the same for other special characters. I also notice you're uri-encoding forward slashes (/); why?
Edit: vvvvvv Got me!