Php/Symfony/Symfony2/開発環境に外部からアクセス
提供: 初心者エンジニアの簡易メモ
2017年1月17日 (火) 12:45時点におけるAdmin (トーク | 投稿記録)による版 (ページの作成:「==localhost以外からapp_devへアクセスすると以下エラーが出る== You are not allowed to access this file. Check app_dev.php for more information. 対応...」)
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'))