我有这个规则:
RewriteCond %{QUERY_STRING} size=(\d+)
并希望捕获(\d+)
以供以后在RewriteRule
or中使用RewriteCond
。像这样的东西:
RewriteCond %{QUERY_STRING} size=(\d+)
RewriteCond $1 <1024 ## that $1 refers to (\d+)
我怎样才能做到这一点?
我有这个规则:
RewriteCond %{QUERY_STRING} size=(\d+)
并希望捕获(\d+)
以供以后在RewriteRule
or中使用RewriteCond
。像这样的东西:
RewriteCond %{QUERY_STRING} size=(\d+)
RewriteCond $1 <1024 ## that $1 refers to (\d+)
我怎样才能做到这一点?