我的 .htaccess RewriteRule “不起作用”
RewriteRule ^word-(.*)/(.*)/([a-z][a-z])/([0-9]+)?/$ /keywordbycountry.php?word=yes&keyword=$2&cc=$3&page=$4 [L]
$2 = 是关键字(任何内容) $3 是国家代码(只有 2 个小写字母) $3 是页面(只有数字)
,但由于某种原因它不起作用
RewriteRule ^word-(.*)/(.*)/([a-z][a-z])/([0-9]+)?/$ /keywordbycountry.php?word=yes&keyword=$2&cc=$3&page=$4 [L]
the $2 = is the keyword (anything)
the $3 is the country code (only 2 lowercase letters)
the $3 is the page (only numbers)
but for some reason it is not working
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
“.*”可能是问题所在,它会匹配任何内容,因此也会匹配“/”,直到到达字符串末尾。
使用 [^/]+ 代替:
".*" might be the problem, it will match anything and therefore also '/' up until the strings end is reached.
use [^/]+ instead: