hoping someone can offer some assistance here. This is an issue with multiple layers. In short, I want to have pretty URLs that use a URL variable to a file within a folder.
After some playing, I figured it out. My regex was off.
Changed:
# Make URLs sexy! RewriteRule ^([^/\.]+)/?$ index.php?page=$1 [L]
to:
RewriteRule ^(.*)(/)/?$ index.php?page=$1 [L]