How to do a RewriteRule 开发者_运维技巧like this, for multiple file extensions as .(html|htm|php)?
RewriteRule ^(/)?$ directory/index.php [L]
This will redirect anything that ends with .html, .htm or .php to directory/index.php
RewriteRule ^(.*\.(html|htm|php))$ directory/index.php [L]
精彩评论