postal2600 kirjoitti: > I found what the problem is, but I have no ideea how to solve it: > the / is not recognized as "index.fcgi". I know there is a .htaccess > way to do this, but I can't just find it. > The problem is like this: > > http://trac.cvds.ro/index.fcgi/phpdrone - this wroks > > http://trac.cvds.ro/phpdrone - this doesn't work, though I will like > to :P > > Is there a .htaccess method for this one? I kinda ran out of options.
mod_rewrite (provided that you're using Apache). RewriteEngine On RewriteRule ^/$ /index.fcgi [R] -- Jani Tiainen --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
