gpt4 book ai didi

regex - 在 htaccess 中用连字符替换 %20

转载 作者:行者123 更新时间:2023-12-05 04:15:18 25 4
gpt4 key购买 nike

以下用连字符替换 %20 的代码运行不正常。有时有效,有时无效,如果标题中有数字,则数字后的空格不会被替换。有什么帮助吗?例如。
他今年30岁
他是 30%20years%20old

RewriteEngine On
RewriteCond %{THE_REQUEST} (\s|%20)
RewriteRule ^([^\s%20]+)(?:\s|%20)+([^\s%20]+)((?:\s|%20)+.*)$ $1-$2$3 [N,DPI]
RewriteRule ^([^\s%20]+)(?:\s|%20)+(.*)$ /$1-$2 [L,R=301,DPI]

最佳答案

代替那些复杂的替换,尝试使用这 2 条规则用连字符替换所有空格:

RewriteEngine On

RewriteRule "^(\S*)\s+(\S*)$" /$1-$2 [L,NE,R=302]

RewriteRule "^(\S*)\s+(\S*\s+.*)$" $1-$2 [L]

# remove multiple hyphens
RewriteRule ^(.*)-{2,}(.*)$ /$1-$2 [L,R=302]

关于regex - 在 htaccess 中用连字符替换 %20,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32746297/

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