How can I change/add to the RedirectMatch alias structures in my httpd.conf 
file excerpt below such that  a "/lists/mylist" URL path gets redirected to 
"/lists/mailman/listinfo/mylist" while still supporting the "/lists" 
redirect to "/lists/mailman/listinfo"?

I messed around with some grouping ( (.*) --> $1) RedirectMatch lines with 
no success.

Thanks for any help
-Matt


     ##
     ## GNU Mailman stuff as per
     ## http://forum.qmailrocks.org/viewtopic.php?p=3274#3274
     ##

     <Directory /usr/local/mailman/cgi-bin/>
         Options ExecCGI
         AllowOverride None
         Order allow,deny
         Allow from all
     </Directory>

     <Directory /data/mailman/archives/public/> 
         Options FollowSymLinks
         AllowOverride None
         Order allow,deny
         Allow from all
     </Directory>

     ScriptAlias /lists/mailman   /usr/local/mailman/cgi-bin
     Alias       /pipermail       /data/mailman/archives/public

     RedirectMatch 
^/lists[/]*$         https://mydomain.com/lists/mailman/listinfo/
     RedirectMatch ^/lists/mailman[/]*$ 
https://mydomain.com/lists/mailman/listinfo/

------------------------------------------------------
Mailman-Users mailing list
[email protected]
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: 
http://www.python.org/cgi-bin/faqw-mm.py?req=show&amp;file=faq01.027.htp

Reply via email to