Apache RewriteRule 丢失了 https:// 的一个斜杠

Apache RewriteRule 丢失了 https:// 的一个斜杠

在我的 Apache 服务器上,我需要将完整的 URL 作为参数传递给 php 函数。但是,当我使用类似以下内容时:

RewriteRule ^(.*)$ ../image.php?url=$1

$1 最终丢失了 https 中的一个斜杠。换句话说,如果我尝试使用它来解析https://example.com/img01.jpg,$1 仅接收 https:/example.com/img01.jpg

相关内容