私はこの .htaccess ファイルを持っています:
Options +FollowSymLinks
RewriteEngine On
# put trailing slash
RewriteCond %{REQUEST_METHOD} !=POST
RewriteCond %{REQUEST_URI} /+[^\.]+$
RewriteRule ^(.+[^/])$ %{REQUEST_URI}/ [R=301,L]
# to make pretty urls
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?get=$1/ [QSA,L]
問題は、firebug のコンソールを見ると、すべてのリソース (.js、.css) が 2 回呼び出されていることがわかります。
この htaccess ファイルの何が問題になっていますか?
どうもありがとう!(そして私の下手な英語でごめんなさい)