我的web.config文件中有这个规则,我需要转换为htaccess规则。
<rule name="Redirect subdomain" enabled="true" patternSyntax="ECMAScript">
<match url="^(.*)$" />
<conditions>
<add input="{HTTP_HOST}" pattern="^([^/]+)\.([^/]+)\.com\.br$" />
</conditions>
<action type="Rewrite" url="/index.php?cliente={C:1}&categoria=portal&module=home&do=index&{QUERY_STRING}"
/>
</rule>
我试过这个:
RewriteCond %{HTTP_HOST} ^(www\.)subdomain.domain\.com\.br$ [NC]
RewriteRule^ /index.php?cliente={C:1}&categoria=portal&module=home&do=index&{QUERY_STRING}
但是“cliente”的参数是空的。