From 6c709dd097e65025038a0dc9c17fad6a88e99b6b Mon Sep 17 00:00:00 2001 From: "gerv%gerv.net" <> Date: Sun, 25 Jan 2004 02:30:57 +0000 Subject: Massive rearrangement of the installation section. Hopefully it makes sense now. --- docs/html/rewrite.html | 211 ------------------------------------------------- 1 file changed, 211 deletions(-) delete mode 100644 docs/html/rewrite.html (limited to 'docs/html/rewrite.html') diff --git a/docs/html/rewrite.html b/docs/html/rewrite.html deleted file mode 100644 index 61e76de03..000000000 --- a/docs/html/rewrite.html +++ /dev/null @@ -1,211 +0,0 @@ -Apache - mod_rewrite - - magic
The Bugzilla Guide - 2.17.5 - Development Release
PrevAppendix B. Useful Patches and Utilities for BugzillaNext

B.1. Apache - mod_rewrite - - 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.

  1. 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:

    
<VirtualHost 12.34.56.78>
    -RewriteEngine On
    -RewriteRule ^/([0-9]+)$ http://foo.bar.com/show_bug.cgi?id=$1 [L,R]
    -</VirtualHost>
    -
  2. There are many, many more things you can do with mod_rewrite. - Please refer to the mod_rewrite documentation at - http://www.apache.org. -


PrevHomeNext
Useful Patches and Utilities for BugzillaUpCommand-line Bugzilla Queries
\ No newline at end of file -- cgit v1.2.3-24-g4f1b