heh well considering there's like a million different files I don't think that's an option, plus I don't have dreamweaver.
But I did get a bit farther. I read up on Mod_rewrite, and now I have .htaccess file in the php-man directory that looks like this:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /php-man
RewriteCond %{REQUEST_FILENAME} -f
RewriteRule (^[_a-zA-Z0-9-]+(\.[_a-zA-Z0-9-]+)*$) /index.php?temp=ubox&cont=phpman&page=$1 [QSA]
</IfModule>
Since I'm a badboy, when I got it to work the first time I didn't save the .htaccess, but that one wouldn't work for filenames that had numbers in it, but this one works does.
http://www.thmnetwork.com/php-man/funcref.html
as you can see it's adding another .html to the end, any ideas why?
My only other problem besides that: getting the links to look at php-man by default, I tried using the <BASE href> tag, but that didn't seem to work..
the saga continues,
Joel