On Tue, Dec 16, 2008 at 20:21, dmitrey <[email protected]> wrote:
> - www.mysite.org is a pure html page (because all those Trac issues
> "index by date", "download in other formats" are not appropriate for
> the site start page);
> - pages mysite.org/entry1, mysite.org/entry2, ... etc are Trac wiki
> pages

If you have mod_rewrite (or similiar) availeble:

RewriteEngine On
RewriteBase /
RewriteRule ^$ my_static_page.html
RewriteCond %{REQUEST_URI} !-f
RewriteRule (.*) /location/of/trac//wiki/$1 [L]

If i`m not mistaken, you cannot use this configuration with
trac residing in the root directory, must use some prefix.
-- 
Maciej Łebkowski, http://lebkowski.info/kontakt.php

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to