开发者

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

开发者 https://www.devze.com 2023-04-01 09:23 出处:网络
How to do a RewriteRule 开发者_运维技巧like this, 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

精彩评论

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