これまでのところ、私の.htaccessは次のようになっています。
Options +FollowSymLinks
RewriteEngine On
RewriteBase /school
RewriteRule ^([a-zA-Z0-9]+)/$ index.php?page=$1
RewriteRule ^([a-zA-Z0-9]+)$ index.php?page=$1
ErrorDocument 404 /school/index.php?page=404
mysite.com/school/admin
ただし、通常のURLのようにパススルーして、サブディレクトリに移動する必要があります。調べてグーグルで検索しましたが、見つかりませんでした。ここで何か助けはありますか?