Forum Moderators: coopster
The idea is to rewrite a url like /page/abc/123/ to be run /page?p1=abc&p2=123. The rule is:
RewriteRule ^page/([^/]+)/([^/]+)/$ /index.php/page/?p1=$1&p2=$2/ [L]
This works just fine on the server with php installed as a module. It loads the appropiate wordpress page and passes in p1 & p2.
On a server with php installed as a cgi, it just runs index.php and does not pass anything in.
Anyone have any ideas?