Kudose;10883517 wrote:RewriteEngine On
RewriteRule .* index.php
You'll need to use your own mechanism to parse the URL's.
No, you not approaching it the wrong way. The Zend Framework uses this route for it's router.
Thanks for the reply i tried that also.
maybe you can help me on this: i got working by doing
RewriteRule grab(.*) /index.php/$1
but i need grab to be in the url still defeats the purpose. trying figure a way i tried doing (.) or (.) so it grabs whatever is after domain.com/$1
but i cant seem to figure how to grab the string after domai.com/$1
$1 being the string.
.* seems to not pickup anything? which i figured it should right?
if i do (.*) index.php/$1 i get internal server error.