开发者

How to do a RewriteRule for multiple file extensions as .(html|htm|php)?

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]
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜