diff options
author | Dave Lawrence <dlawrence@mozilla.com> | 2013-10-31 09:32:46 +0100 |
---|---|---|
committer | Byron Jones <bjones@mozilla.com> | 2013-10-31 09:32:46 +0100 |
commit | 1522e48c854046b947284dbe50296cc0e159be4c (patch) | |
tree | b88f7641b7d5e21f73e56ca07423fe646e25ff50 /.htaccess | |
parent | 69d8d262406f29b742c61850cd1d4932909277b5 (diff) | |
download | bugzilla-1522e48c854046b947284dbe50296cc0e159be4c.tar.gz bugzilla-1522e48c854046b947284dbe50296cc0e159be4c.tar.xz |
Bug 887117: Move the compiled template cache dir to a directory in the document root to avoid storing on NFS
Diffstat (limited to '.htaccess')
-rw-r--r-- | .htaccess | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -41,6 +41,8 @@ Redirect permanent /etiquette.html https://bugzilla.mozilla.org/page.cgi?id=etiq Redirect permanent /duplicates.html https://bugzilla.mozilla.org/duplicates.cgi RewriteEngine On +RewriteRule ^template_cache/ - [F,L,NC] +RewriteRule ^template_cache.deleteme/ - [F,L,NC] RewriteRule ^review(.*) page.cgi?id=splinter.html$1 [QSA] RewriteRule ^user_?profile(.*) page.cgi?id=user_profile.html$1 [QSA] RewriteRule ^request_defer(.*) page.cgi?id=request_defer.html$1 [QSA] |