标签: apache .htaccess mod-rewrite
我有:
RewriteRule ^(en|fr|it)?/?account$ /page?account&lang=$1 [L,QSA]
所以如果你去example.com/fr/account,它运作良好 - 我获得了page和lang的2 GET参数。
example.com/fr/account
page
lang
但是,如果你转到example.com/account,我获得了page的GET参数,但我也为lang添加了空GET参数。
example.com/account
如果$ 1实际上包含某些内容,我是否可以添加&lang=$1规则?
&lang=$1