This is what we had to do.
/read script
(parses QUERY_STRING)
/profile script
(parses QUERY_STRING)
.htaccess
<Files read>
ForceType php-script
</Files>
Options +SymlinksIfOwnerMatch
RewriteEngine On
RewriteBase /
RewriteRule read/(.*)$ /read?$1
<Files profile>
ForceType php-script
</Files>
Options +SymlinksIfOwnerMatch
RewriteEngine On
RewriteBase /
RewriteRule profile/(.*)$ /profile?$1
what happens is it takes anything after the / after profile and makes it the query after the ?
not a perfect solution, but the best one yet 🙂
-Aaron