共有ホスティング アカウントで CodeIgniter を動作させるのに問題があります。URL はhttp://test.tallgreentree.comです。.php エラーは表示されませんが、アドレス バーに入力したすべてに対して 404 ページが表示されます。
これが私のconfig.phpファイルの始まりです。
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/*
|--------------------------------------------------------------------------
| Base Site URL
|--------------------------------------------------------------------------
|
| URL to your CodeIgniter root. Typically this will be your base URL,
| WITH a trailing slash:
|
| http://example.com/
|
*/
$config['base_url'] = "http://test.tallgreentree.com/";
/*
|--------------------------------------------------------------------------
| Index File
|--------------------------------------------------------------------------
|
| Typically this will be your index.php file, unless you've renamed it to
| something else. If you are using mod_rewrite to remove the page set this
| variable so that it is blank.
|
*/
$config['index_page'] = "index.php";
/*
|--------------------------------------------------------------------------
| URI PROTOCOL
|--------------------------------------------------------------------------
|
| This item determines which server global should be used to retrieve the
| URI string. The default setting of "AUTO" works for most servers.
| If your links do not seem to work, try one of the other delicious flavors:
|
| 'AUTO' Default - auto detects
| 'PATH_INFO' Uses the PATH_INFO
| 'QUERY_STRING' Uses the QUERY_STRING
| 'REQUEST_URI' Uses the REQUEST_URI
| 'ORIG_PATH_INFO' Uses the ORIG_PATH_INFO
|
*/
$config['uri_protocol'] = "AUTO";
サブドメインで CodeIgniter を使用する場合の既知の問題はありますか? 何が原因でしょうか? 複数の構成を試しましたが、何も機能していないようです。ホスティング プロバイダーに確認する必要があるサーバー設定は何ですか?
お時間をいただき、ご協力いただきありがとうございました。