I'm using Apache rewrite_mod to have all test after the URL adress go into parameter text using the following in the .htaccess file
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?text=$1 [L,QSA]
which works if I have www.example.com/some_text
but doesn't when I have www.example.com/some_text/some other text
I want to have in the text parameter the whole request: "some_text/some other text" not only "some other text".
Can this be done?