使用Apache 2.2.15,我在根级别.htaccess文件中使用以下内容来删除URL中的尾部斜杠:
# Remove trailing slashes (prevents SEO duplicate content issues)
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)/$ /$1 [L,R=301]
当我将规则移动到vhost.conf中的VirtualHost块时,我得到了一个"太多的重定向"访问目录时出错。
有人可以解释为什么会这样吗?