Skip to content

Instantly share code, notes, and snippets.

@mryoshio
Created September 5, 2013 02:16
Show Gist options
  • Save mryoshio/6445287 to your computer and use it in GitHub Desktop.
Save mryoshio/6445287 to your computer and use it in GitHub Desktop.
Apache returns 405 (method not allowed) with this against OPTIONS method.
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_METHOD} ^OPTIONS
RewriteRule .* - [R=405,L]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment