The tail end of my .htaccess reads:
RewriteCond %{query_string} ^(.*)$
RewriteRule ^([a-zA-Z0-9\-]+)/\?iframe x_iframe.php?pageurl=$1&%1 [L]
RewriteCond %{query_string} ^(.*)$
RewriteRule ^([a-zA-Z0-9\-]+)/?$ x.php?pageurl=$1&%1 [L]
What I'm trying to do is have it so that any URL ending in '?iframe' uses a different page.
What am I doing wrong?
Thanks.