LoginSignup
4
3

More than 5 years have passed since last update.

[baserCMS]CPIサーバでWAFに引っ掛かって記事更新できないとき

Last updated at Posted at 2016-07-28

WAFの影響で記事更新できないときには以下で対策取ることができる。

管理側だけWAF無効化する

  • 管理側URLと同じ配置でディレクトリ作る
  • 中に index.php と .htaccess 置く

■ /admin/index.php

<?php
header('Location: /admin/dashboard/index');
exit;

■ /admin/.htaccess

<IfModule siteguard_module>
    SiteGuard_User_ExcludeSig all
</IfModule>

参考情報

情報提供元

4
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
3