正则表达式 – 为什么Apache删除多个斜杠?

前端之家收集整理的这篇文章主要介绍了正则表达式 – 为什么Apache删除多个斜杠?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这个RewriteRule

RewriteRule ^ test /(.*)$test.PHP?url = $1

在此URL上

mysite.com/test//one///two////three///

给我这个结果

$1 = URL = ‘一/二/ /’

我正在使用easyPHP,如果它很重要,我想知道为什么Apache在内部删除多个斜杠而不重定向到更正的URL?以及如何禁用或添加重定向到此行为?

预先感谢

似乎有多个斜线违反标准.正如 this post所指出的那样,RFC 1630说:

PATH

The rest of the URI follows the colon in a format depending on the
scheme. The path is interpreted in a manner dependent on the
protocol being used. However,when it contains slashes,these
ust imply a hierarchical structure.

///并不意味着层次结构 – 你有空的文件名称.从那以后我猜想Apache的行为是设计的. (使用多个斜杠也不是一个好主意,因为结果将是无效的URL).

我会改用不同的角色.

原文链接:https://www.f2er.com/regex/357239.html

猜你在找的正则表达式相关文章