0

mod_rewrite現在、自分のサイトの URL で使用しています。ほぼ完了しました。これを行う前は、私のサイトは高速でした。読み込みに 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/はフォルダ ページ用です。

4

1 に答える 1

1

mod_rewrite

「mod_rewrite のトレース ログ レベルを高くすると、Apache HTTP サーバーの速度が大幅に低下します!」

あなたはそれを使用しているかもしれません。ドキュメントから、mod_rewrite が Apache を遅くする唯一の方法のようです。

于 2013-06-17T06:13:35.687 に答える