The page was actually setup by someone else, so I am trying to get the right permalink to match his .htaccess file which is:
RewriteEngine On
RewriteBase /
# Rewrite http://www.domain.com to domain.com
RewriteCond %{HTTP_HOST} ^www\.(.*)
RewriteRule ^(.*) http://%1/$1 [R,L]
#uploaded files
RewriteRule ^(.*)?/?files/(.*) wp-content/blogs.php?file=$2 [L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule . - [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-.*) $2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
#RewriteCond %{REQUEST_URI} !/(assets|dav|ical|_ical)
RewriteRule . index.php [L]
ErrorDocument 404 /index.html
ErrorDocument 401 /index.html
ErrorDocument 403 /index.html
I have tried a couple of different tags, but the only one that seems to partially work is the default permalink, but it stills returns a blank page to the others that are hosting from my site. I liked to have a pretty permalink with the name of the page, blog, or site as the extension not a page id.