i've relatively new to the mod_rewrite module, but i've been looking at this thing for a whole work day. Im trying to redirect an page based on whether or not the incoming url has a specific text in the query string. In my .htaccess, here is what I have:
Code: Select all
RewriteCond %{QUERY_STRING} ^.*(atext=).*$
RewriteRule . /ScrubUtuil.php [R]Escentially its not going to ScrubUtil.php. Its either going to my error page or I get a internal server error.
Thanks in adance.