I want to rewrite everything that uses this pattern...
/test/?TEXT=TRUE
and allow it to be /test/TEXT
AND /test/TEXT2
, and so on.
I want to rewrite everything that uses this pattern...
/test/?TEXT=TRUE
and allow it to be /test/TEXT
AND /test/TEXT2
, and so on.
Yes you can. Create 2 rules:
RewriteRule ^/test/help$ /test/?help=true [L]
RewriteRule ^/test/(.*)$ /test/?random=$1