Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
すべての JavaScript ファイルの縮小版を作成し、それらを js/min フォルダーに配置しました。
私の HTML/PHP コードでは、js フォルダーにある元のファイルを呼び出しています。.htaccess ファイルで使用する正しいディレクティブは何ですか? ?
/js
/分/
次のようなものを使用できます。
RewriteRule ^js/([\w.-]+)$ /js/min/$1 [L]
これにより、js ファイル名に単語文字 (az、0-9、_)、ドット、および文字を含めることができます-。
-