Forum Moderators: phranque
Here is my initial setup I tried in http.conf on Apache 1.3.33 with mod_rewrite compiled and enabled:
RewriteEngine On
RewriteCond %{REQUEST_METHOD} TRACE
RewriteCond %{REQUEST_METHOD} GET
RewriteRule .* - [F]
RewriteLog logs/rewrite.log
RewriteLogLevel 9
<Directory />
SSLRequireSSL
Options FollowSymLinks
AllowOverride None
</Directory>
etc ...
Looks like not blocking GET at all when I first just do a http request on a browser. Any suggestions?
Thanks.
[karakas-online.de...]
I'm kind of confused about blocking GET. Have I gone senile in thinking that 90+% of user web traffic is GET? I'm just not sure if blocking GET is what you really want to do. (It just smells wrong.) Can you tell us what you're trying to accomplish?
Jim