Forum Moderators: phranque
As it stands, these return 410 because of my rewriterule
RewriteEngine On
RewriteCond %{QUERY_STRING}!^$ RewriteRule .* - [G]
How can I allow for an exclusion?
Thanks
# If query non-blankRewriteCond %{QUERY_STRING} .# reply with 410 Gone for all except go.phpRewriteRule !^go/go\.php$ - [G]
Chris