Options +FollowSymLinks
RewriteEngine on
RewriteBase /
# 301 Redirect all requests that don't contain a dot or trailing slash to
# include a trailing slash
RewriteCond % !/$
RewriteCond % !\.
RewriteRule ^(.*) %/ [R=301,L]
# Rewrites urls in the form of /parent/child/
# but only rewrites if the requested URL is not a file or directory
RewriteCond % !-f [NC]
RewriteCond % !-d [NC]
RewriteRule ^(.+)$ index.php?page=$1 [QSA]