我的.htaccess文件中有8行重写规则。我需要从这些规则中排除服务器上的两个物理目录,以便可以访问它们。目前,所有请求都发送到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]
真正的浓汤,好收成:)。它应该是^([^ /] +)。
—
开尔文
[^/]
因为如果在此处不允许使用纯空格(必须使用进行转义\<space>
)。