On 20/11/2009, at 10:46, creadoo - Sven Rißmann wrote: > i want to display the Profiles of my forums in a way like: > http://www.domain.com/forum/profile/username/ > Here is what i've tried: > > Regex: > ^/forum/profile/([^/]+)/(?:\?(.*))?$ > Substitution: > forum/index.php?pretty;action=profile;u=$1;$2
I'd use something like.. Regex: ^/forum/profile/(.+?)/ Substitution: /forum/index.php?pretty;action=profile;u=$1 -- Octality http://www.octality.com/ _______________________________________________ Cherokee mailing list [email protected] http://lists.octality.com/listinfo/cherokee
