次のシナリオがあります。
Codeigniter Web サイト ( WebA と呼びましょう) は、ドメイン www.example.com からアクセスされる sebserver "/" のルートにインストールされます。
別の Codeigniter Web サイト ( WebBと呼びましょう) が同じ Web サーバーのサブフォルダー "/subfolder" にインストールされ、ドメイン www.example2.com からアクセスされます。
index.php を削除する 2 つの .htacces ファイルがあり、WebA と WebB にインストールされています。
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
#Removes access to the system folder by users.
#Additionally this will allow you to create a System.php controller,
#previously this would not have been possible.
#'system' can be replaced if you have renamed your system folder.
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ /index.php?/$1 [L]
#When your application folder isn't in the system folder
#This snippet prevents user access to the application folder
#Submitted by: Fabdrol
#Rename 'application' to your applications folder name.
RewriteCond %{REQUEST_URI} ^application.*
RewriteRule ^(.*)$ /index.php?/$1 [L]
#Checks to see if the user is attempting to access a valid file,
#such as an image or css document, if this isn't true it sends the
#request to index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
RewriteCond %{HTTPS} off
RewriteCond %{REQUEST_URI} (auth|register|secure)
RewriteRule ^(.*)$ https://%{SERVER_NAME}%{REQUEST_URI} [R=301]
RewriteCond %{HTTPS} on
RewriteCond %{REQUEST_URI} !(static|auth|register|secure)
RewriteRule ^(.*)$ http://%{SERVER_NAME}%{REQUEST_URI} [R=301]
</IfModule>
<IfModule !mod_rewrite.c>
# If we don't have mod_rewrite installed, all 404's
# can be sent to index.php, and everything works as normal.
# Submitted by: ElliotHaughin
ErrorDocument 404 /index.php
</IfModule>
AddType application/vnd.ms-fontobject .eot
AddType application/octet-stream .otf .ttf
/application/config/config.php で WebA を構成しました。
$config['base_url'] = 'http://example.com/';
/subfolder/application/config/config.php の WebB では:
$config['base_url'] = 'http://example2.com/';
エラー 1:
この構成で www.example2.com にアクセスすると、次のようになります。
404 ページが見つかりません
エラー 2:
WebB の .htaccess RewriteBase 行を次のように変更すると:
RewriteBase /subfolder/
インデックス「http://example2.com/」にhtmlが出力されますが、スクリプトをロードする代わりにこれをロードするため、JSまたはCSSはロードされません。
<h4>A PHP Error was encountered</h4>
<p>Severity: Notice</p>
<p>Message: Trying to get property of non-object</p>
<p>Filename: controllers/html.php</p>
<p>Line Number: 60</p>
</div><div style="border:1px solid #990000;padding-left:20px;margin:0 0 10px 0;">
<h4>A PHP Error was encountered</h4>
<p>Severity: Warning</p>
<p>Message: Cannot modify header information - headers already sent by (output started at /var/www/subfolder/system/core/Exceptions.php:185)</p>
<p>Filename: helpers/url_helper.php</p>
<p>Line Number: 546</p>
</div>
ページをナビゲートしようとするとこのエラーも出力されますが、Html が表示されません。
最初のエラーは、データベース モデルが機能していない構成ミスが原因のようです。
エラー 3:
WebB の config.php を次のように変更すると:
$config['base_url'] = 'http://example.com/subfolder/';
そして、.htaccess の WebB の RewriteBase 行は次のようになります。
RewriteBase /subfolder/
www.example.com/subfolder/ および www.example2.com からアクセスすると問題なく動作しますが、問題は WebB のリンクであり、www.example.com/ ではなく www.example2.com にする必要があります。サブフォルダー/
WebA は常に機能しています。
同じコードを複数の Web サイトで問題なく動作させていますが、これまでこのシナリオに直面したことはありません。何か案は?