到目前为止,我的 .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 一样通过,进入子目录。我已经看过并用谷歌搜索过,但一直没能找到它。这里有什么帮助吗?