Use either:
RewriteRule ^(.*)/$ index.php?path=$1
or
RewriteRule ^(.*)/$ index.php/$1
and tear apart $_GET['path']
or $_SERVER['PATH_INFO']
respectively.
Ignacio Vazquez-Abrams
2010-03-14 06:14:48
Use either:
RewriteRule ^(.*)/$ index.php?path=$1
or
RewriteRule ^(.*)/$ index.php/$1
and tear apart $_GET['path']
or $_SERVER['PATH_INFO']
respectively.