HI
i have a navigation solution thats similar to below
Kingston (section)
research (subsection)
law (subsection)
The section rewite is below:
RewriteRule ^kingston/business/school/(.*?)/$ http://127.0.0.1/flavor1.php?id=$1
(works a treat)
however the subsections by example > research
I defined this as below: (research is the subsection )
RewriteRule ^kingston/law/school/research/(.*?)/$ http://127.0.0.1/flavor1.php?id=$1
My problem is the first url rewrite is all processed so my url directs to
http://127.0.0.1/flavor1.php?id=research/311
As you see it running the first rewrite and adding research/(.*?)/ as the variable
How do i avoid this?
Thanks
Last edited by numbenator; 08-10-2009 at 03:28 PM..
|