diff options
author | Sebastin Santy <sebastinssanty@gmail.com> | 2017-05-27 07:19:11 +0200 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2017-05-27 07:19:11 +0200 |
commit | 3913ef5f5d5988f8e344921534b8f1db1c51da13 (patch) | |
tree | db965ac646d11d48b7826e01254ae6819d6a72d6 /.htaccess | |
parent | 48cf53e5b1891a29645432121467e29cdb9e061a (diff) | |
download | bugzilla-3913ef5f5d5988f8e344921534b8f1db1c51da13.tar.gz bugzilla-3913ef5f5d5988f8e344921534b8f1db1c51da13.tar.xz |
Bug 1365340 - Add /new-bug (new_bug.cgi) (#82)
Diffstat (limited to '.htaccess')
-rw-r--r-- | .htaccess | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -57,6 +57,9 @@ RewriteRule ^__version__$ version.json [L] # heartbeat.cgi returns 200 if the DB and memcached are both working, and 500 otherwise. RewriteRule ^__heartbeat__$ heartbeat.cgi [L] +# New single page interface for filing bugs +RewriteRule ^new[-_]bug$ new_bug.cgi [L,QSA] + RewriteRule ^template_cache/ - [F,L,NC] RewriteRule ^template_cache.deleteme/ - [F,L,NC] RewriteRule ^review(.*) page.cgi?id=splinter.html$1 [QSA] |