Limit Server Options Requests

by John H
~1 minute

in httpd.conf

<IfModule hmod_allowmethods>
   AllowMethods GET POST OPTIONS
</IfModule>

In each VirtualHost directive

## Disallow OPTIONS METHOD
RewriteEngine On
RewriteCond %{REQUEST_METHOD} !(GET|POST)
RewriteRule .* - [F]

This seems to stop the majority of the requests

Related Articles

Limit Server Options Requests

in httpd.conf AllowMethods GET POST OPTIONS In each VirtualHost directive ## Disallow...

John H John H
~1 minute

Scroller Animation Resources

Scroll activated website animations are so hot right now. Oh my gosh sooooo hot. Here are some...

John H John H
~1 minute

JWT authentication and resources

So much to look at. Where to Store your JWTs – Cookies vs HTML5 Web Storage...

John H John H
~1 minute