我计划在主目录中最多添加10个.htaccess重写url代码,这会影响我的网站的执行(网站的加载时间)吗?
我当前的.htaccess文件是

Options +FollowSymLinks
RewriteEngine On
RewriteRule ^([0-9]+)/([0-9]+)/([^.]+).html index.php?perma=$3
RewriteRule ^movies/([^.]+).html gallery.php?movie=$1
RewriteRule ^album/([^.]+).html gallery.php?album=$1
RewriteRule ^img/([^.]+)/([^.]+).html gallery.php?img=$2
RewriteRule ^movies.html gallery.php

最佳答案

是的,它将影响加载时间。规则/异常(exception)越多,渲染所需的时间就越长。但是:我们正在谈论的是微秒,甚至人眼都不会注意到。

关于php - .htaccess中的RewriteRules是否会影响网站的速度?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14767316/

10-12 14:14