HTML5 Boilerplate ( http://html5boilerplate.com/ )的.htaccess
缓存设置很棒,但我遇到了 JS 和 CSS 版本控制的缓存破坏设置的问题。
<IfModule mod_rewrite.c>
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)\.(\d+)\.(js|css|png|jpg|gif)$ $1.$3 [L]
</IfModule>
我似乎无法让它与.htaccess
文件中已经存在的 WordPress 重写设置一起使用。
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
充其量,我的 JS 文件的重写永远不会发生。在最坏的情况下,它会破坏网站。
任何人都幸运地让它与 WordPress 一起工作?