codeigniter プロジェクトをビルドし、http://works.dev/rcsoft をベース URL として使用してローカル マシンでテストしました。そのプロジェクトを cpanel にアップロードし、http://testsomeone.org/rcsoftのような新しい URL をアップロードします。ホームページは稼働中です。
ただし、 http://testsomeone.org/rcsoft/personなどの他のコントローラー ページでは機能しません。与えている
Not Found
The requested URL /index.php/person was not found on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
しかし、それはhttp://testsomeone.org/rcsoft/index.php/personで機能します
私の .htaccess ファイル
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]
私のconfig.php
$config['base_url'] = 'http://testsomeone.org/rcsoft/';
$config['index_page'] = '';
私を助けてください。どうした?