0

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

4

1 回答 1

1

尝试类似的东西,

RewriteRule ^(admin)($|/) - [L]

在您的其他 RewriteRules 之前,因为这将在该行结束重写过程。

于 2013-02-18T05:10:35.193 回答