我有8行重写规则在我的。Htaccess 文件。我需要从这些规则中排除服务器上的两个物理目录,以便可以访问它们。现在,所有请求都发送到 index.php 文件。
要排除的目录: “ admin”和“ user”。
所以 http 请求: http://www.domain.com/admin/不应该被传递到 index.php 文件。
ErrorDocument 404 /index.php?mod=error404
Options FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} !^www\.domain\.com$ [NC]
RewriteRule ^(.*)$ http://www.domain.com/$1 [R=301,L]
RewriteRule ^([^/] )/([^/] )\.html$ index.php?lang=$1&mod=$2 [L]
RewriteRule ^([^/] )/$ index.php?lang=$1&mod=home [L]