mod_rewrite性能:几个完全匹配VS一个正则表达式

时间:2014-08-17 12:18:32

标签: regex performance mod-rewrite match

我在.htaccess文件中使用mod_rewrite,我要做大约20次重写。

就性能而言,使用正则表达式创建一个规则是否更好:

RewriteRule ^category/(.+)$ page.php?category=$1 [L]

或者每次重写最好制定一条规则:

    RewriteRule category/one page.php?category=one [L]
    RewriteRule category/two page.php?category=two [L]
    RewriteRule category/three page.php?category=three [L]
    [...]

或者其他方面更好吗?

0 个答案:

没有答案