How does one convert IIS Rewrite rules to Apache/htaccess rewrite rules?
Specifically, I’m looking to convert this IIS rule to Apache:
<rule name="SEO">
<match url="^([^/]+/)*([^/]+)\.(\d+)$" ignoreCase="false" />
<action type="Rewrite" url="index.php?id={R:3}" appendQueryString="false" />
</rule>
Ok, here it is: