From bf8ac7551058df22dd5eb712631d9e383fc587a5 Mon Sep 17 00:00:00 2001 From: "barnboy%trilobyte.net" <> Date: Wed, 22 Aug 2001 10:44:14 +0000 Subject: Big checkin of docs to resolve every known outstanding doc bug! Yay release. Still many things to fix. Aren't there always? --- docs/sgml/patches.sgml | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) (limited to 'docs/sgml/patches.sgml') diff --git a/docs/sgml/patches.sgml b/docs/sgml/patches.sgml index 8ebfdee15..3a1ce90d2 100644 --- a/docs/sgml/patches.sgml +++ b/docs/sgml/patches.sgml @@ -3,6 +3,40 @@ Useful Patches and Utilities for Bugzilla + Are you looking for a way to put your Bugzilla into overdrive? Catch some of the niftiest tricks here in this section. + +
+ Apache <filename>mod_rewrite</filename> magic + Apache's mod_rewrite module lets you do some truly amazing things with URL rewriting. Here are a couple of examples of what you can do. + + + + Make it so if someone types + http://www.foo.com/12345, + Bugzilla spits back + http://www.foo.com/show_bug.cgi?id=12345. Try setting up + your VirtualHost section for Bugzilla with a rule like + this: + + +RewriteEngine On +RewriteRule ^/([0-9]+)$ http://foo.bar.com/show_bug.cgi?id=$1 [L,R] + +]]> + + + + + There are many, many more things you can do with + mod_rewrite. As time goes on, I will include many more in + the Guide. For now, though, please refer to the mod_rewrite + documentation at http://www.apache.org + + +
+
The setperl.csh Utility You can use the "setperl.csh" utility to quickly and -- cgit v1.2.3-24-g4f1b