Simple knowledgebase script?



Why wouldn't you use something like Uservoice and leave the contact stuff off?

Hosting and maintaining software is so 2009.
 
Uservoice looks very good... I haven't seen that before. I want to host the articles on my site though, so I can get the SEO benefits for all the content. Is that possible with them?
 
FYI I was able to get uservoice working in a subdirectory. Requires mod_proxy, mod_proxy_html, mod_headers.

Code:
     ProxyPass /kb http://proxy51.uservoice.com
     ProxyPreserveHost on
     <Location /kb>
         ProxyPassReverse http://proxy51.uservoice.com
         SetOutputFilter INFLATE;proxy-html;DEFLATE
         ProxyHTMLURLMap / /kb/
         RewriteEngine on
         RequestHeader set Host proxy51.uservoice.com
     </Location>