我现在在我的网站上使用mod_rewrite
。几乎完成了。在此之前我的网站很快。现在加载需要2到3秒,首先出现空白的白页。
使用mod_rewrite时,页面加载通常会花费更多时间吗?
没有Mod重写的链接http://www.wapinside.com/Songs/webindex.php
与Mod Rewrite http://www.wapinside.com/Songs/webindex2.php
链接这就是我的.htaccess
:
Options +FollowSymLinks
RewriteEngine on
RewriteRule ^w/([^*]+).html$ webindex2.php?dir=$1 [L]
RewriteRule ^web/([0-9]+)/([^*]+).html$ webindex2.php?page=$1&dir=$2 [L]
w/
用于文件夹,web/
用于文件夹页面。
答案 0 :(得分:1)
“对mod_rewrite使用高跟踪日志级别会大大降低Apache HTTP Server的速度!”
您可能正在使用它。从文档中,这似乎是mod_rewrite可以减缓Apache的唯一方式。