我已成功设置了一个重定向快捷方式的网址系统:
# http://www.site.com/102/ -> http://www.site.com/102-some-keywords.html
RewriteRule ^([0-9]{3})/?$ includes/redirect.php?ref=$1 [L]
# http://www.site.com/102-some-keywords.html -> http://www.site.com/templates/default/index.php?ref=102
RewriteRule ^([0-9]{3})-.*?\.html$ templates/default/index.php?ref=$1 [L]
现在我正在升级到多语言系统,并希望在域名之后获取语言代码:
# http://www.site.com/fr/102/ -> http://www.site.com/fr/102-some-keywords.html
# http://www.site.com/fr/102-some-keywords.html -> http://www.site.com/templates/default/index.php?loc=fr&ref=102
有些语言是fr,it,es,ru,... 我想我需要多个变量$ 1,$ 2但我仍然坚持使用这部分。
这是一次尝试(无法正常工作)
RewriteRule ^(.+)/(^[0-9]{3})/?$ includes/redirect.php?loc=$1&ref=$2 [L]
RewriteRule ^(.+)/(^[0-9]{3})-.*?\.html$ templates/default/index.php?loc=$1&ref=$2 [L]
答案 0 :(得分:0)
您的新代码基本上是正确的,除了您在^
之前忘记了[0-9]
(匹配表达式的开头)。只是删除它们应该使代码有效,但我个人会为国家/地区代码添加更严格的匹配:[a-z]{2}
RewriteRule ^([a-z]{2})/([0-9]{3})/?$ includes/redirect.php?loc=$1&ref=$2 [L]
RewriteRule ^([a-z]{2})/([0-9]{3})-.*?\.html$ templates/default/index.php?loc=$1&ref=$2 [L]