为什么 Apache 在使用 RewriteRule 并转到末尾带有尾部斜线的 URL 时会抛出一个 Forbidden 错误?

Why does Apache throw a Forbidden error when using RewriteRule and going to an URL with a trailing slash at its end?

我想为我的应用程序构建一个搜索页面,我正在使用 .htaccess 使 URL 看起来更好。搜索页面位于 localhost/search。此外,可以在 URL 的末尾附加两个可选参数,例如:localhost/search/post/12345。但是,如果没有附加任何参数,只有一个尾部斜杠 (localhost/search/),Apache 会抛出一个 Forbidden 错误。我不确定为什么会发生这种情况,因为服务器上没有名为 search 的文件夹。

为了更好地说明我的问题,以下是有效的链接和无效的链接:

工作:

不工作:

search.php.htaccess 文件位于根目录中。所以这是 .htaccess 文件:

RewriteEngine On

# Redirect HTTP traffic to HTTPS
RewriteCond %{HTTPS} !=on
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301,NE]

# Unless directory, remove trailing slash
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^/]+)/$  [R=301,L]

# Resolve .php file for extension-less php urls
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule ^([^/.]+)$ .php [L]

# Search parameters
RewriteRule ^search?/?([0-9a-zA-Z_-]+)?/?([0-9a-zA-Z_-]+)?/?$ search.php?type=&data=&2

# 404 error
ErrorDocument 404 /errors/404.php

根据 Whosebug 上的 this 有用的回答,我发现了问题。在 .htaccess 文件中,我更改了以下行:

# Unless directory, remove trailing slash
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^/]+)/$  [R=301,L]

至:

# Unless directory, remove trailing slash
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)/$ / [L,R=301]