I'm doing that by passing the entire string after the domain to the index page, and processing it in php, not in .htaccess. I'm not an .htaccess expert, but this is working for me:
RewriteEngine On
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteRule ^.*$ ./index.php
I specify in the setup if the site will or will not use lang support, I think support both in the same site could be hard to implement.
Ask me please if you need more details.
UPDATED
Dennis, I was reading @usoban post and I could say I have a similar approach. As I said, I get the full path after the domain from .htaccess to my application class and parse it to an array. If 'multilanguage' is specified in config, I take the first array element and load the 'alias' table for that language.
The 'alias' table is an associative array that map alias-controller, like this:
$lang_mods = array(
'home' => 'Home',
'contact' => 'Contact',
'sitemap' => 'Sitemap',
'about' => 'Section/about',
'terms' => 'Section/terms',
);
In this way, I can have a fully translated url, i.e:
http://www.example.com/en/contact
and:
http://www.example.com/es/contacto
So, after removing the first language element from the url array, I check the next element against the alias table. Last two items in the table are special cases that can be used in order to simplify the url, getting
http://www.example.com/en/about
instead of
http://www.example.com/en/section/about
that looks better, but both pointing to the same Section controller.
After removing language and alias, the remaining elements in the array -if any- are passed to the controller. 'about' or 'terms' in the example, are prepended in the argument array. Depending on the controller, the first argument can be an action or not.
If in some step of this process, something doesn't match the allowed values, it's redirected to the home page.
Ok, in your case, maybe if the first argument (or the second if the site is multilanguage) could be checked against the available controllers, if it doesn't exist, you could route to a 'default' controller, and then checking against the available pages in your db. In this way you could avoid the need of having an additional /p/ in the url.
I tried to be clear, sorry, English is not my native language ;)