Codeigniter フレームワークは初めてです。1 つの Code Igniter プロジェクトに 2 つのアプリケーションがあります。
-multipleApp
- application
- one
-- controller
-- model
-- view
-- helper
- Two
-- controller
-- model
-- view
-- helper
- index_two.php
- index.php
これで、Web アプリケーションにアクセスできるようになりました。ローカルホスト/ようこそ/テスト
今私の質問は、localhost で両方のアプリケーションにアクセスするにはどうすればよいですか??
index.php : アプリケーション フォルダは次のようになります。
$application_folder = 'application/one';
index_two.php :
$application_folder = 'application/two';
これは、1 つの codeigniter フォルダーで 2 つのアプリケーションにアクセスするための正しい方法ですか?
これが私の現在の.htaccessです:
RewriteEngine On
RewriteCond $1 !^(index\.php|images|captcha|css|js|template|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /multipleApp/index.php/$1 [L]