On Jul 10, 2005, at 00:59, Jim wrote: > Whenever I try to go to the admin section of it I just get shoved back > to the listinfo screen. > > After several false starts I've narrowed the problem down to a problem > with the case of the word mailman in the html code. > > For example, if I go to http://192.168.1.1/mailman/admin/Mailman it > works!!!
It sounds like you have a rewrite or redirection rule in your Apache configuration that matches too generously. It may be intended to redirect people who visit http://www.example.com/mailman to the general listinfo page. You need to make sure that it doesn't also match http://www.example.com/mailman/admin/mailman. Try something like: RedirectMatch ^/mailman[/]*$ http://www.example.com/mailman/listinfo The ^ and $ signs are important to anchor the match at the beginning of the path and to keep it from matching other trailing "mailman" instances. <http://www.python.org/cgi-bin/faqw-mm.py?req=show&file=faq04.057.htp> -- Jim Tittsler http://www.OnJapan.net/ GPG: 0x01159DB6 Python Starship http://Starship.Python.net/crew/jwt/ Mailman IRC irc://irc.freenode.net/#mailman ------------------------------------------------------ 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&file=faq01.027.htp
