我想在 htaccess 中使用条件,如果是真的使用一些重写规则。例如我的想法是:
if(subdomain='en' OR query string have '[lan=en]'){
RewriteRule ^home.html$ index.php [QSA,L]
RewriteRule ^user/1.html$ user.php?id=1 [QSA,L]
.....
}elseif(subdomain='fa' OR query string have '[lan=fa]'){
RewriteRule ^home.html$ index_fa.php [QSA,L]
RewriteRule ^karbar/1.html$ user.php?id=1 [QSA,L]
.....
}
我该怎么做?有什么方法可以为每个条件使用不同的 .htaccess 文件吗?
注意:我的域地址和查询字符串是动态的