我现在mod_rewrite
在我的网站网址上使用。快完成了。在这样做之前,我的网站很快。现在加载需要 2 或 3 秒,首先会出现一个空白的白色加载页面。
使用 mod_rewrite 时页面加载通常需要更多时间吗?
没有 Mod Rewrite 的链接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/
用于文件夹页面。