Skip to content

Commit

Permalink
Merge pull request #393 from nanasess/add-symfony-cli
Browse files Browse the repository at this point in the history
symfony/cli の場合はディレクトリアクセス時に index.php を付与する
  • Loading branch information
okazy authored Aug 5, 2020
2 parents cb9af4b + 04f6999 commit 0170146
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
15 changes: 11 additions & 4 deletions data/class/SC_Initial.php
Original file line number Diff line number Diff line change
Expand Up @@ -169,10 +169,17 @@ public function defineDirectoryIndex()
// DirectoryIndex の実ファイル名
SC_Initial_Ex::defineIfNotDefined('DIR_INDEX_FILE', 'index.php');

$useFilenameDirIndex = is_bool(USE_FILENAME_DIR_INDEX)
? USE_FILENAME_DIR_INDEX
: (isset($_SERVER['SERVER_SOFTWARE']) ? substr($_SERVER['SERVER_SOFTWARE'], 0, 13) == 'Microsoft-IIS' : false)
;
$useFilenameDirIndex = false;
if (is_bool(USE_FILENAME_DIR_INDEX)) {
$useFilenameDirIndex = USE_FILENAME_DIR_INDEX;
} else {
if (isset($_SERVER['SERVER_SOFTWARE'])) {
if (strpos($_SERVER['SERVER_SOFTWARE'], 'Microsoft-IIS') !== false
|| strpos($_SERVER['SERVER_SOFTWARE'], 'Symfony') !== false) {
$useFilenameDirIndex = true;
}
}
}

// DIR_INDEX_FILE にアクセスする時の URL のファイル名部を定義する
if ($useFilenameDirIndex === true) {
Expand Down
2 changes: 1 addition & 1 deletion html/define.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
/**
* DIR_INDEX_FILE にアクセスするときにファイル名を使用するか
*
* true: 使用する, false: 使用しない, null: 自動(IIS は true、それ以外は false)
* true: 使用する, false: 使用しない, null: 自動(Symfony, IIS は true、それ以外は false)
* ※ IIS は、POST 時にファイル名を使用しないと不具合が発生する。(http://support.microsoft.com/kb/247536/ja)
*/
define('USE_FILENAME_DIR_INDEX', null);
Expand Down

0 comments on commit 0170146

Please sign in to comment.