「Php/Symfony/Symfony2/開発環境に外部からアクセス」の版間の差分
提供: 初心者エンジニアの簡易メモ
(ページの作成:「==localhost以外からapp_devへアクセスすると以下エラーが出る== You are not allowed to access this file. Check app_dev.php for more information. 対応...」) |
(相違点なし)
|
2017年1月17日 (火) 12:45時点における版
localhost以外からapp_devへアクセスすると以下エラーが出る
You are not allowed to access this file. Check app_dev.php for more information.
対応方法としては以下ファイルの配列に許可ipを加える -app_dev.php
- || !in_array(@$_SERVER['REMOTE_ADDR'], array('127.0.0.1', 'fe80::1', '::1')) + || !in_array(@$_SERVER['REMOTE_ADDR'], array('127.0.0.1', 'fe80::1', '::1', '192.168.xxx.xxx'))