gpt4 book ai didi

apache - .htaccess 中 $1 与 %1 之间的差异

转载 作者:行者123 更新时间:2023-12-03 08:25:10 24 4
gpt4 key购买 nike

%1有什么区别和 $1在.htaccess 中?

例如,

    #  to remove www  
RewriteCond %{HTTP_HOST} ^(\w+)\.mydomain\.com [NC]

RewriteRule .* http://mydomain.com/%1 [R=301,L]
# versus
# RewriteRule .* http://mydomain.com/$1 [R=301,L]

我一直在用 Dave Child's .htaccess cheat sheetJackol's .htaccess cheat sheet以及 Apache mod_rewrite docs但额外的帮助会很棒。

最佳答案

%1指在 RewriteCond 中匹配的模式条件,而 $1指在 RewriteRule 内匹配的模式.

更一般地,使用 %n引用来自 RewriteCond 的编号匹配项条件正则表达式模式,并使用 $n引用来自 RewriteRule 的编号匹配项正则表达式模式。

关于apache - .htaccess 中 $1 与 %1 之间的差异,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6654834/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com