html/.htaccess に下記を追記して POST 禁止にする
There have been cases in the past where spam posts have caused the server to crash.
To deal with this, we decided to use the following method.
Add the following to html/.htaccess to disable POSTs.
# POST の禁止 (Spam の標的になった場合)
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_METHOD} ^POST$
RewriteRule ^.* - [F,L]
</IfModule>
To remove the restrictions, edit .htaccess from the site build folder menu and delete the additional section.
When removing the restrictions, don't forget to take action against spam.
Please note that if you continue to cause problems without taking action, we will assume that you are not a qualified administrator and will delete the entire site.
--
Nobuhiro YASUTOMI (MySite Users Webmaster)
Nobuhiro YASUTOMI (MySite Users Webmaster)