2台のサーバーがx.comとx.netx.com
にはCodeIgniter1.7があり、x.netにはCodeIgniter2.1があると
言っています。2台のサーバーのサブドメインを処理するためにhtaccessを使用しています。
yxcomと入力すると、x.com / yに移動し、yxnetからx.net/yに移動し
ますが、x.netサーバーのhtaccessが機能していません。
x.netのhtaccess::
DirectoryIndex index.php
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !^index\.php
RewriteCond %{HTTP_HOST} ^(.*)\.x\.net
RewriteCond %{HTTP_HOST} !^www\.x\.net
RewriteCond %{HTTP_HOST} !^x\.net
RewriteRule ^(.*)$ %1/%{REQUEST_URI}
x.comのhtaccessは同じですが、サイト名が異なるだけですが
、なぜこれが発生するのですか?