I have page
www.mydomain.com/cms/index.php
I need a mod_rewrite rule that will stop triggering showing a 404 page when I enter something like
www.mydomain.com/cms/keyword1/keyword2/keyword3
or
www.mydomain.com/cms/keyword1/keyword2/999-keyword3.html
and so on. What I want is to pass the every thing after the [cms] to the index file for processing
so
[www.mydomain.com/cms/keyword1/keyword2/keyword3]
will return
[keyword1/keyword2/keyword3]
Try this in you .htaccess file
This will redirect the user to your customize page of cms.php, or you can change the name, and will send the page requested in $_GET[‘content’];
the content of the cms.php can be