Forum Moderators: phranque
I have a DB application on my site. Now I want to prevent people to directly submit URL's with queries such as e.g.
[domain...]
to prevent people seeing DB entries that are none of their business.
I've sucessfully applied image anti-hotlinking on the same server, so mod_rewrite works allright.
Now I've tried something simple like
RewriteEngine on
Rewritecond %{the_request} /phpimage\.php\?ID
RewriteRule - [F,NC,L]
but this has no effect. Can someone give me a clue?