.htaccessファイルに次のものがあります。
# Allow any files or directories that exist to be displayed directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Rewrite all other URLs to index.php/URL
RewriteRule .* index.php/$0 [PT]
サーバー管理者はGooglemod_pagespeedをインストールしました。もちろん、フォルダーが存在しないため、アクセスしようとするたびにエラーがログに記録されます/mod_pagespeed_beacon
(統計はログに記録されません)。
何RewriteCond
を追加する必要がありますか(どこに追加する必要があり/mod_pagespeed_beacon
ますか)。