SOFTELメモ Developer's blog

会社概要 ブログ 調査依頼 採用情報 ...
技術者募集中

【Apache】AllowEncodedSlashes on が反映されない?

問題

.htaccess に AllowEncodedSlashes on を書きましたが、反映されないです。

答え

AllowEncodedSlashesは、サーバ設定ファイルまたはバーチャルホストの設定のところで使えるディレクティブ。

<VirtualHost *:80>
    ServerAdmin mail@example.jp
    DocumentRoot /home/example
    ServerName xxxx.example.jp
(中略)
    AllowEncodedSlashes On ← この辺に書く
(中略)
</VirtualHost>

.htaccess ではだめ。

関連するメモ

コメント