On Nov 15, 8:39 am, Eno <[EMAIL PROTECTED]> wrote: > I want to have a particular URL under a Trac site to be ignored by > Trac. I have an <Alias> stanza in my vhost config that points that URL > to a folder outside of Trac but how do I tell Trac to not handle that > URL? (Right now, I get an error saying Trac couldn't find a handler > for that URL).
Presuming you are using mod_python, use something like: Alias /some/url /some/path <Location /some/url> SetHandler None </Location> If you are using mod_wsgi, then the Alias directive should be sufficient, you just need to ensure you have it appearing before the WSGIScriptAlias for Trac. So, how are you hosting Trac under Apache? What method you are using will determine what you need to do. Graham --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Trac Users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/trac-users?hl=en -~----------~----~----~----~------~----~------~--~---
